This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <webApp accessControl="1" appState="0" appType="0" background="nms:backgrounds/survey.png" | |
| builtIn="0" cmsAccount-id="0" created="2019-03-08 17:18:15.727Z" createdBy-id="1052" | |
| defaultDictionary-id="1039" defaultLanguage="en" defaultOrigin-id="0" deliveryMapping-id="3587" | |
| designLanguage="en" endDate="" entitySchema="nms:webApp" folder-id="5530" | |
| folderProcess-id="0" hasHtmlPage="1" id="16392" idCounter="0" internalName="APP4" | |
| isModel="0" label="Keep pageCount" lastModified="2019-03-08 17:18:15.727Z" | |
| library="nms:webAppLogRcp" modelName="newLandingPage" modifiedBy-id="1052" | |
| nature="landingPage" operation-id="0" operator-id="0" optOutBannerMode="0" | |
| originUrlOverride="true" publicationDate="" rendering-id="3582" schema="nms:recipient" | |
| startDate="" startPath="/" state="0" timezone="_inherit_" translationStatus="0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta name="description" content=""> | |
| <title>Starter Template · Bootstrap</title> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"> | |
| </head> | |
| <body style="" class=""> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class AdminCustomInvoicesController extends ModuleAdminController { | |
| public function __construct(){ | |
| parent::__construct(); | |
| $this->bootstrap = true; // use Bootstrap CSS | |
| $this->table = 'order_invoice'; // SQL table name, will be prefixed with _DB_PREFIX_ | |
| $this->identifier = 'id_order_invoice'; // SQL column to be used as primary key | |
| $this->className = 'OrderInvoice'; // PHP class name | |
| $this->allow_export = true; // allow export in CSV, XLS.. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " UI | |
| set number " show line number | |
| set ruler " show status bar | |
| set laststatus=2 " always show status bar | |
| syntax on " syntax based on extension | |
| colorscheme slate " theme | |
| set so=7 " set lines to show (when curosr at top or bottom of screen) | |
| " Data | |
| set encoding=utf8 " encoding |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # chromium | |
| sudo apt install -y chromium-browser | |
| # dev (php, docker, git, node, bower, electron, composer) | |
| sudo apt install -y \ | |
| php php-curl php-mysql \ | |
| docker.io \ | |
| git \ | |
| nodejs npm | |
| sudo ln -s /usr/bin/nodejs /usr/bin/node |