Tools

Click Tools in the main menu bar to access the following useful tools available in PHPMaker.

Advanced Settings
Synchronization
Copy Table Settings
Copy Field Settings
Sort Tables Alphabetically
Languages
Locale Settings
Multi-Language Property Editor
Update Template
Menu Editor
Scripts and Stylesheets
Composer Packages
npm Packages
Database, Table, Field Variable Names

 

Advanced Settings

You can click Tools -> Advanced Settings to change the following advanced settings.

 

General
General settings (for all projects)
Progress window color scheme
Color schema of the progress window when generating scripts.
Auto close progress window
Auto close progress window after generation if no errors, default is true.
Auto save project on generate
Auto save project before generating scripts. Default is true.
Check new version on start
Check if there is a new version on start
Update template on start
Check and update template on start (for registered users only)
Use project versioning
Enable project versioning. If enabled, whenever you save your project, a version of the project will be created. You can click Project -> History to view the versions and revert to any version. See Project File for details.
Grid scrollbar mode
The scrollbar mode of the grids in the UI. Possible values: "Default" or "Classic". If you prefer the old style, switch to "Classic".
Code editor
The code editor in the UI. Possible values: "Default" or "Classic". The "Default" editor is a browser-based editor, WebView2 Runtime is required. If you prefer the old editor, switch to "Classic", then close and open PHPMaker again.
HTML preview
Use HTML preview in HTML Settings page, default is true. WebView2 Runtime is required for HTML preview.
Proxy server address
Proxy server address. Using proxy server on your PC (with PHPMaker installed) may affect composer, npm and remote database connection, you need to provide your proxy server info so the UI can connect properly.
Proxy server port
Proxy server port
Proxy server username
Proxy server user name (if required)
Proxy server password
Proxy server password (if required)
Auto-Update values
The comma separated PHP function names for the Auto-Update feature (see Field Setup)

You can add your own functions by putting your functions in the server side Global Code section (see Server Events and Client Scripts) and then add your function name here. The function name must follow the standard rules for naming variables in PHP.

Custom validation functions
The comma separated function names for the Validate feature (see Field Setup)

You can add your own PHP/JavaScript functions for custom server/client-side validation. The function name is used for both PHP and JavaScript, so it must be a valid function name for both languages. You can put your server-side and client-side validation function in the Global Code (see Server Events and Client Scripts) section of server-side and client-side respectively.


Project
Project-specific settings
Project name
Project name. See Project File for more info.
Note It is recommended that you use only alphanumerical characters in lowercase in project name.
Project ID
Unique ID of the project. Do not change the project ID unless absolutely necessary. See Project File for more info.
Node.js max. old space size
Memory limit of Node.js (MB). If your project is large, you may need to increase the memory limit, e.g. you can set it to 2048, 3072, 4096, etc.
Notes
  1. Set the setting according to the available memory of your system,
  2. If you need to use a large setting, you may need 64-bit version of Node.js. If your PC is 64-bit, download the latest 64-bit Windows installer and install it, then set Node.js path (see above) as the installed path, e.g. C:\Program Files\nodejs.
Node.js write file synchronously
Write file synchronously. By default, output files are generated asynchronously. Use this setting if writing file synchronously performs better on your system.
Node.js garbage collection
Use Node.js garbage collector to clean up memory regularly during generation.
Note Cleaning up memory manually will slow down generation, only enable this setting if you encounter out of memory problem.
Generate production config file
Whether to generate the config.production.php. Uncheck this setting if you have updated the config.production.php manually and you do not want it to be overwritten by later generation.
Compile container for production
PHPMaker uses PHP-DI, the dependency injection container can be compiled into PHP code optimized especially for your configuration and your classes. If the environment (see above) is set as production, and this setting is enabled, then compilation will be enabled.
Notes
  1. When enabled, the container will be compiled once and never be regenerated again.
  2. When you deploy new versions of your scripts (for example, after adding or deleting a table) to production, you must delete the generated file (<ProjectFolder>/<LogFolder>/cache/CompiledContainer.php) to ensure that the container will be re-compiled.
Generate route groups
Whether to generate route groups so that user can also use alternative route for table, e.g. /cars/list instead of /carslist. Default is false. If route groups are unnecessary for you or you have a large number of tables, you should disable it for better routing performace.
Use route cache for production
Whether to enable to enable router cache. If you have a large number of tables, you can enable this for better routing performance.
Notes
  1. When enabled, the cache will be compiled once and never be regenerated again.
  2. When you deploy new versions of your scripts (for example, after adding or deleting a table) to production, you must delete the generated file (<ProjectFolder>/<LogFolder>/cache/RouteCache.php) to ensure that the cache will be re-compiled.
Generate .htaccess
Whether to generate the .htaccess for Apache. Uncheck this setting if you have your own .htaccess and you do not want it to be overwritten by .htaccess from the template.
Notes
  1. URL Rewrite is still required, your own .htaccess MUST be properly configured for URL Rewrite.
  2. This setting does NOT affect the .htaccess for the "api folder.
Generate web.config
Whether to generate the web.config for IIS. Uncheck this setting if you have your own web.config and you do not want it to be overwritten by web.config from the template.
Notes
  1. URL Rewrite is still required, your own web.config MUST be properly configured for URL Rewrite.
  2. This setting does NOT affect the web.config (if any) for the "api folder.
Compress project .css
Compress the project stylesheet (e.g. <project>.css) and output minified .css file. This setting is ignored if Debug (see above) is enabled.
Compress project .js
Compress project JavaScript (e.g. Client Script and Startup Script, see Server Events and Client Scripts) and output minified .js. This setting is ignored if Debug (see above) is enabled.
Disable project CSS styles
Do not generate the project stylesheet.
Note If you use this setting, there will be no CSS styles generated for the scripts and the HTML will be malformed, make sure you provide your own CSS styles, for example, by specifying your own stylesheet, read HTML Settings.
Validate NOT NULL fields
By default PHPMaker will detect fields declared as NOT NULL in the database (and without default value in database or the project) and force "Required" validation. If for some special reason you need to disable this feature, disable this setting.
Add novalidate attribute to forms
Add novalidate attribute to HTML <form> element. The novalidate attribute indicates that the form shouldn't be validated when submitted. Since PHPMaker uses its own validation, you might want to disable browser's form validation.
Add autocomplete='off' attribute to forms
Add autocomplete attribute to HTML <form> element and set it to "off". If enabled, the browser is not permitted to automatically enter or select a value for this field.
Allow login by login link
Allow login by [Login Link](https://symfony.com/doc/current/security/login_link.html).
Activate user link lifetime (seconds)
Lifetime of [Login Link](https://symfony.com/doc/current/security/login_link.html).
CSRF protection
Enable CSRF token to prevent Cross-Site Request Forgery (CSRF). See [Csrf Protection](authentication.html?id=csrf-protection) for details.
Session timeout period (minutes)
Specify the session time-out period if the user does not refresh or request a page.

PHP has its own settings for session timeout, you can configure them in php.ini, read Runtime Configuration, but sometimes you may want to control the session period yourself, then you can setup BOTH this setting and the Session keep alive interval (seconds) setting (see below) to a positive value.

Notes
  1. For this setting to work, this setting MUST be SHORTER than the session.gc_maxlifetime and session.cookie_lifetime in php.ini, otherwise the session will be expired by PHP first.
  2. To enable this feature, this setting must be set to a value larger than 0.
Session keep alive interval (seconds)
Specify the interval to send Ajax request to the server for keeping the session alive.
Notes
  1. For this setting to work, this setting MUST be SHORTER than the session.gc_maxlifetime and session.cookie_lifetime in php.ini, otherwise the session will be expired by PHP first. Do not set the interval too short, making requests to the server every 300-600 seconds (5-10 minutes) should be enough.
  2. To enable this feature, this setting must be set to a value larger than 0.
Session time out countdown period (seconds)
Specify the countdown period before session ends. Default is 60.

When the session is about to end, a modal dialog will show up to remind user and let the user choose to continue the session. If the user does not respond after the countdown period, the session will expire.

Composite key separator
The separator between key values of a composite key. Default is ",".

If your primary key values are of string type and contain commas also, the commas will affect parsing of the composite key value in the script and lead to failure of locating a record, you can change the separator to avoid such problem.

Export all time limit
Set time limit (seconds) when exporting all records
Export field caption
Export field caption instead of field names during export. (For tables/views only.)
Export field images
Export field images for image fields during export. If uncheck, the original field value is exported. (For tables/views only.)
Export original values
Export original field values instead of looked up values (for fields setup with user values or lookup tables) during export. (For tables/views only.)
Export CSS styles
Export HTML/Excel/Word with CSS styles (e.g. for keeping the row color in the exported file).
Note Not application to PhpSpreadsheet and PHPWord extensions (for registered users).
Export master record
Specify if master record should be exported during exporting master/detail records. (Not applicable to CSV) Default is true.
Export master record for CSV
Specify if master record should be exported during exporting master/detail records to CSV. Default is false.

If master record is exported, the result CSV may not be imported into other application. If you want to export it anyway, enable this setting.

Export detail records in Master/Detail-View
Specify if detail records in View page of master table (in Master/Detail-View) should be exported. Default is true.
Export detail records for CSV in Master/Detail-View
Specify if detail records in View page of master table (in Master/Detail-View) should be exported for CSV. Default is false.
Show vertical master record in List Page
Specify if master record in List page of detail table should be displayed in vertical format. Default is true.
Allow no paging section
Allow no paging section in List page.

If both paging section at top and that at bottom are disabled, users will not be able to go to the second or later pages. The scripts will use paging section at bottom by default to make sure paging is possible. If you want to allow no paging section (e.g. you always have all records in one page), enable this setting.

Auto hide paging section if single page
If only one page (i.e. number of records <= page size), hide the paging section automatically.
Auto hide page size selector if single page
If only one page (i.e. number of records <= current page size), hide the page size selector section automatically.
Note Beware that if you auto hide the page size selector, user cannot change page size, even one or more selectable page sizes are smaller than the current number of records.
Initiate search panel as collapsed
Specify if the search panel should be initialized as collapse on page load.
Blob field byte count for hash value calculation
For use with Check Conflicts (see Table Setup). Specify the number of bytes for calculating the hash value . Default is 200.

Check Conflicts will increase the time required to load the page, for better performance only the first hundreds of bytes of the BLOB fields are processed by default, but there are chances that change of BLOB data is not detected (if the first nth bytes are not changed). You can increase the number of bytes, if you want to process all bytes, enter 0.

Auto-Suggest maximum display entries
Specify the number of options to be displayed during Auto-Suggest. Default is 10.
Auto-Suggest all display fields
Specify if Auto-Suggest should consider Display field #2 to #4.

By default lookup only uses Display field #1 and only finds records with Display field #1 that STARTS WITH the input characters. It this setting is enabled, Auto-Suggest finds records with Display field #1 to #4 that CONTAINS the input characters

Use table filter for filter fields
If table filter is set, it will also be used as a filter criteria for field level filters. Default is true.
Lookup page size
Page size of modal lookup. Modal lookup supports pagination (infinite scrolling), this setting specifies the number of records per page.
Filter page size
Page size of column header filter. Filter supports pagination (infinite scrolling), this setting specifies the number of records per page.
Auto-fill original value
For use with Auto-Fill (see Field Setup). By default the looked-up value (if any) will be used to fill the target field, enable this option to use the original (database) value instead.
Grid-Add row count
Specify the initial number of blank rows in Grid-Add and Master/Detail-Add mode. Default is 5.
Use View Tag format for edit
Specify if the View Tag format should be used during editing.

By default all decimal digits as outputted by the database will be used in Edit page, for example, if a number is 1.23456 in database, the Edit page will also show 1.23456 even you may have specified just 2 decimal digits in View Tag panel (see Field Setup). If you want to show the number as in the View page, you can enable this setting. However, note that after saving the record, the number will be saved as 1.23 only even you have not edited the field value.

Note If you enable this setting, there may be loss of precision after saving the record. Only use this setting when precision is unimportant.
Use Ajax actions (List page)
Use Ajax to do searching, sorting, Inline-Add/Copy/Edit/Delete, Multi-Delete/Edit/Update, and Grid-Add/Copy/Edit and then update the List page without reloading the page.
Note Custom Template is not supported.
Fall back user level permissions
Fall back Import/Push permissions to Admin permission and Export/Lookup permissions to List permission. For temporary backward compatibility only. NOT recommended for new projects. In the long run you should update your projects and set up the Import/Export/Lookup/Push permissions for each user level.
Cache folder for routes and container
Cache folder for routes and container. If unspecified, */cache* will be used, see [Logging](phpsetup.html?id=logging).
Target PHP version
For use with the [platform](https://getcomposer.org/doc/06-config.md#platform) setting under the [config](https://getcomposer.org/doc/06-config.md) section of composer.json. It lets you fake platform packages (PHP and extensions) so that you can emulate a production environment or define your target platform in the config. For example, if you select "8.1", this will make sure that no package requiring more than PHP 8.1 can be installed regardless of the actual PHP version you run locally. However, note that if your local PHP version is different (lower or higher), you may not be able to run the generated site locally. To avoid confusions, it is always recommended to use the same PHP version in development and production environments. If this setting is unspecified, PHPMaker will use your local PHP version as the target PHP version.
DBAL version
Version of DBAL. Possible values: ``3`` or ``4``, default is ``4``. If you need to use v3 for some reasons, you can set this setting to 3 for the time being. However, you should prepare to upgrade to v4 for the long run.
Connection info of production server (JSON)
Specify connection info of databases for production server in JSON, e.g. { "DB": { "user": "foo", "password": "bar", "ssl_xxx": "...", ... } }
Notes
  1. In JSON, keys must be strings, written with double quotes.
  2. You only need to provide info that is different from the development connection info.
Database time zone (for SET TIME ZONE)
Specify the database time zone for MySQL/PostgreSQL/Oracle.
Collation for LIKE operator (MySQL)
Use the specified COLLATION for the LIKE operator (for MySQL only).
MySQL driver
Specify MySQL driver for PHP. Possible values: mysqli or pdo_mysql. Default is pdo_mysql.
Use ILIKE operator (PostgreSQL)
Use ILIKE instead of LIKE for case-insensitive search (for PostgreSQL only).
PostgreSQL driver
Specify PostgreSQL driver for PHP. Possible values: pgsql or pdo_pgsql. Default is pdo_pgsql.
Microsoft SQL Server driver
Specify Microsoft SQL Server driver for PHP. Possible values: sqlsrv or pdo_sqlsrv. Default is sqlsrv.
Collation for LIKE operator (Microsoft SQL Server)
Use the specified COLLATION for the LIKE operator (for Microsoft SQL Server only).
Oracle compare
For setting Oracle's NLS_COMP parameter. Requires Oracle 10gR2 (or later). Possible values are: BINARY, LINGUISTIC, ANSI.

For example, if you want to do case insensitive search you can select LINGUISTIC.

Oracle sort
For setting Oracle's NLS_SORT parameter. Requires Oracle 10gR2 (or later).

For example, if you want to do case insensitive search you can enter "BINARY_CI" (no double quotes).

SQLite driver
Specify SQLite driver for PHP. Possible values: sqlite3 or pdo_sqlite. Default is pdo_sqlite.
Multiple option separator
For use with Ajax Lookup. Specify the separator for multiple selected values. Default is ",". Multiple option separator must not be a single quote or a backslash.
Filter option separator
For use with filter fields. Specify the separator for multiple filter values. Default is "|". Filter option separator must not be a single quote or a backslash.
Use lookup cache
If enabled, lookup data will be cached in memory so all subsequent calls to lookup will use the cache data instead of database access.
Lookup cache count
The maximum number of records for lookup cache. Used in conjunction with Use lookup cache. If the total number of records in a lookup is more than this value, lookup data will not be cached.
Lookup cache enabled pages
The pages where Use lookup cache is used. Default is "list,grid". By default only the "list" and the "grid" pages will use lookup cache (if enabled) because there are more than one records in those pages. If you want to use lookup cache in other pages also, you can add the page IDs, e.g. "list,grid,add,edit,search".
Create upload file on copy
Specify if an uploaded file should be copied when copying a record with file upload fields. (For use with file upload to folder.) Default is true.

If the option Delete file on update/delete (see PHP settings) is enabled, the uploaded file will be deleted. If the deleted record is a copied record, deleting the uploaded files will affect the original record. To prevent such possible problem, enable this setting to duplicate the uploaded file when copying a record.

Multiple file upload separator
Specify the file upload separator used to separate the file names. By default, comma is used. If you allow file names with comma, you can enter another separator, e.g. "|".
Upload preview thumbnail width (px)
The width of the thumbnail displayed during the upload process.
Upload preview thumbnail height (px)
The height of the thumbnail displayed during the upload process.
Encrypt file path
Encrypt upload file path if enabled.

Note that if you use IIS, the URL with encrypted file path may become too long for IIS with default settings, you may need to increase the ``UrlSegmentMaxLength`` registry setting, and the changes that are made to the registry will not take effect until you restart the HTTP service and the related IIS services, see [Http.sys registry settings for Windows](https://learn.microsoft.com/en-us/troubleshoot/developer/webapps/iis/iisadmin-service-inetinfo/httpsys-registry-windows) for details.

File upload path for temporary files (relative to local file system root)
Specify the file upload path for temporary files.

When working with file upload fields, some temporary files will be created and then deleted in a temporary folder. Default is empty, meaning that the global upload folder will be used. However, in some cases (e.g. the global upload folder is remote) you should specify a local folder. This path should be a path relative to **local file system root** (see above).

Use image cropper for file upload
Use image cropper for file upload. This setting applies to all file upload fields. If you only want to enable image cropper for a specific field in a specific page, do not enable this setting, you can use Page_Load server event to set the ImageCropper property of the field.
Thumbnail default width (px)
For use with image resize.

If a target resize width is <= 0, this default width will be used. If this setting is also 0, the width will be auto-adjusted to keep the aspect ratio.

Thumbnail default height (px)
For use with image resize.

If a target height width is <= 0, this default height will be used. If this setting is also 0, the height will be auto-adjusted to keep the aspect ratio.

Use Colorbox for images
Specify if colorbox should be used to displayed full size image on clicking the thumbnail in the List/View page. Default is true.
Reduce image size only (image resize)
Do not resize if image is smaller than the resize dimension.
Always keep aspect ratio (image resize)
Keep aspect ratio during image resize.
Use element-internals-polyfill
Use element-internals-polyfill.js. Default is false.
Embed PDF documents
Show PDF documents using PDFObject as embedded documents instead of hyperlinks.
Allowed image file extensions
File extensions that will be treated as images for download. Comma separated.
Allowed non-image file extensions
File extensions that will be treated as non-image download files. Comma separated.
Navbar Quick Search
Whether to put the Quick Search input in the top navbar. By default the Quick Search input is at the bottom of the Extended Search form in the List page of a table.

If this setting is enabled, the Quick Search input will be moved to the navbar.

Search keywords in any selected fields (Quick search)
For use with "All words"option of Quick Search, allows searching all keywords in any fields selected for Quick Search.

When searching "All words" with Quick Search (see Table Setup), by default all keywords must be found in the same field. This option provides an alternative searching behavior.

Search multiple value option
Option for searching fields that store multiple values as comma separated string.

Valid values are: (Default is 3)
1 - no multiple value, the whole comma separated string is considered as one string
2 - all multiple values must meet the search criteria (AND condition)
3 - either one of the multiple values must meet the search criteria (OR condition)

Search filter save option
Specify where to save the search filters. Possible values are: Server, Client, None. Default is Client, i.e. save by browser's localStorage.
Note If you choose Server, the Profile field (see Security Settings) must be set up for storage.
Search option
Searching behaviour when users perform quick/extended search in the list page. Possible values below. Default value is AUTO.
AND - all keywords
OR - any keywords
AUTO - based on quick search keyword option
Sort option
Sorting behaviour when users click the List page table column header. Possible values:
Toggle - asc/desc
Tristate - asc/desc/none
Soft delete time aware period
For use with [Time-aware (for soft delete)](tablesetup.html?id=time-aware-for-soft-delete). The expiration time until which the record will continue to appear. This must be a [relative date/time format](https://www.php.net/manual/en/datetime.formats.php#datetime.formats.relative) supported by [strtotime()](https://www.php.net/manual/en/function.strtotime.php), e.g. "now", "1 hour", "2 days". Default is "now".
Replace textarea by text input for search
Replace textarea by textbox in Search page and Extended Search. Default is true.
Minimum password strength
Minimum password strength if check password strength is enabled.
Password length
Password length when generating a random password.
Use password hash Deprecated
For used with [Hashed password](securitysetup.html?id=hashed-password) (deprecated). If enabled, PHP password_hash() function will be used to create password hash. If disabled, the old md5 function will be used.
Note Beware that if you enable this setting but the users table is still storing old MD5 passwords, users will NOT be able to login. Since MD5 passwords cannot be decrypted, you MUST reset the passwords for the users first or ask users to reset their passwords themselves.
(For backward compatibility only, will be removed from future version, password_hash() must be used in new projects.)
Encrypt user name and password
If enabled, the administrator, database and SMTP server user name and password stored in the config file will be encrypted by php-encryption.
Notes
  1. Make sure you enter your encryption key for Encryption key for data protection (see below).
  2. If you enable this setting, beware of the performance implication of php-encryption.
  3. To encrypt during generation, you must set up PHP CLI. The PHP CLI binary is distributed as php.exe on Windows. Add the folder containing your installed php.exe to your Windows PATH environment variable, then open command prompt and type php -v. If it is working properly, you should see the PHP version number.
Invalid user name characters
Some characters are not allowed to be used in user names. Default value is <>"'&. You may add other characters, but you should not remove any characters from the default value.
Invalid password characters
Some characters are not allowed to be used in passwords. Default value is <>"'&:. You may add other characters, but you should not remove any characters from the default value.
Encryption key for data protection
Encryption key used by php-encryption. For use with field encryption and Encrypt administrator and database user name and password (see above).
AES Encryption key (base64 encoded)
AES Encryption key is used by the ``Encrypt()`` and ``Decrypt()`` functions and other features. By default PHPMaker will generate one for your project. If you need to use your own, you can enter here. Note that the AES Encryption key must be base64 encoded.
Use PHPMailer
Use PHPMailer as a "transport" for Symfony Mailer.
Note By default the SMTP settings are used.
Mailer DSN
DSN of [third party transport](https://symfony.com/doc/current/mailer.html#using-a-3rd-party-transport) for Symfony Mailer, e.g. ``ses+smtp://USERNAME:PASSWORD@default``.
**Notes** 1. Make sure you enter the required Composer package (e.g. ``symfony/amazon-mailer``) under [Composer Packages](tools.html?id=composer-packages). 1. Many 3rd party transports offer a web API to send emails. if you want to use API, make sure you enter (additionally to the bridge) ``symfony/http-client`` under [Composer Packages](tools.html?id=composer-packages) also. 1. If your credentials contain special characters, you must URL-encode them. For example, the DSN ``ses+smtp://ABC1234:abc+12/345@default`` should be configured as ``ses+smtp://ABC1234:abc%2B12%2F345@default``.
Format phone number
Use [Phone Number Util](https://github.com/giggsey/libphonenumber-for-php/blob/master/docs/PhoneNumberUtil.md) to format mobile phone number for sending SMS.
Export folder
Folder name for exported files. If unspecified, the folder name will be export-<Project ID>.
Log all export requests
Log all export requests to export log
Max email recipient
For use with Export (Email). (see PHP Settings.) Default is 3.

To avoid abusing the export to email feature, the number of email addresses in the recipient field is limited to the specified value.

Max email sent count per session
For use with Export (Email). (see PHP Settings.) Default is 3.

To avoid abusing the export to email feature, the number of emails can be sent by the user in each session is limited to the specified value.

Log User ID instead of user name
Use user ID instead of user name for logging (e.g. audit trail). Default is enabled. Note that user ID only exists if User ID Security is enabled.
AdminLTE layout class
AdminLTE layout class. Possible values are: layout-fixed, layout-top-nav, layout-boxed, layout-navbar-fixed, or layout-footer-fixed. Default is layout-fixed.
Note PHPMaker template is based on the fixed layout only. If you change the layout using this option, there may be unexpected behavior and you may need to add some adjustments by CSS (and JavaScript) yourself. AdminLTE is not written by the author of PHPMaker. NO TECHNICAL SUPPORT WILL BE PROVIDED.
Use AdminLTE fixed header table
Use AdminLTE Fixed Header Table in List pages and Summary Reports. This setting applies to all tables, views and Summary Reports. If you only want to enable/disable it for a specific table, you can use Page_Load server event to call the setFixedHeaderTable() method of the page.
Notes
  1. Fixed Header Table does NOT support Crosstab Report and Custom Template.
  2. If you enable fixed header table, the Use Bootstrap responsive table setting (see below) must be "table-responsive".
  3. AdminLTE and its Fixed Header Table are not written by the author of PHPMaker. NO TECHNICAL SUPPORT WILL BE PROVIDED.
Fixed header Table height (CSS class)
CSS class for the table height. Note that Fixed Feader Table requires a table height to work, do not provide an empty setting, default is "mh-400px" (i.e. max-height: 400px). You can use the following utility CSS classes:
  • "h-50px" to "h-1000px" (height, at 50px intervals),
  • "mh-50px" to "mh-1000px" (max-height, at 50px intervals)
  • "vh-10" to "vh-100" (viewport height, at 5vh intervals)
Note You can also use your own CSS class, but do NOT use CSS styles.
Use Bootstrap Toast message
Use Bootstrap Toasts to display messages of the application. By default the messages are displayed above the main table. This options uses Bootstrap Toast to show the message instead. Default is true.
Use Bootstrap Switch for boolean fields
Use Bootstrap Switches (instead of checkboxes) to display boolean values.
Use Bootstrap responsive table
Use Bootstrap Responsive tables. A scrollbar will appear at the bottom of the table if the table is wider than screen. Default is true.
Responsive table class
The responsive table class name to use if use Bootstrap responsive tables. Possible values are: table-responsive, table-responsive-sm, table-responsive-md, table-responsive-lg, or table-responsive-xl. Default is table-responsive.
Fullscreen modal class
Bootstrap CSS class for Fullscreen Modal dialogs. Possible values are: modal-fullscreen, modal-fullscreen-sm-down, modal-fullscreen-md-down, modal-fullscreen-lg-down, modal-fullscreen-xl-down, modal-fullscreen-xxl-down. Default is modal-fullscreen-sm-down, i.e. full screen modal will be used for mobile devices.
Use native SELECT tag for select-one fields
Use native <select> HTML element for select-one fields.

By default all<select> tags (fields with SELECT Edit Tag, see Field Setup) will be replaced by Select2 tags for more features. However, if this setting is enabled, native <select> tag will be used for select-one fields.

Notes
  1. Multiple selection fields (select-multiple) are not supported.
  2. Native <select> tags does not support HTML in options, so using HTML tags in Option Template (see Lookup Table) will NOT work.
Use drop zone for file upload fields
Use drop zone for file upload fields. If enabled, an file upload field looks like:

Otherwise, they are regular Bootstrap file input fields.
Form left column CSS class
Specify the left column CSS class for all forms. This CSS class controls the width of the left column. Possible values are: col-sm-2, col-sm-3, col-sm-4, col-sm-6. Default is col-sm-2. See Bootstrap Horizontal form for details.
Multi-column List page grid CSS class
Specify the CSS class for Multi-Column List page table layout. Possible values are: row-cols-sm, row-cols-md, row-cols-lg. Default is row-cols-md. See Bootstrap Row columns for details.
Multi-column List page card CSS class
Specify the CSS class for Multi-Column List page card layout.
Multi-column List page card button position
Specify the position of the button for list options in card header/footer. Possible values are: top-end, top-start, bottom-end, bottom-start. Default is bottom-start.
Multi-column List page card left column CSS class
Specify the left column CSS class for the data in cards of Multi-Column List page. This CSS class controls the width of the left column. Possible values are: col-sm-2, col-sm-3, col-sm-4, col-sm-6. Default is col-sm-4. See Bootstrap Horizontal form for details.
Use tabular form for desktop
By default Bootstrap Horizontal form is used in Add/Edit/Search/Update/Registration pages, this option makes the scripts use Bootstrap table instead.
Notes
  1. The mobile mode still uses Bootstrap form, NOT table.
  2. The mobile detection is done on the server side for this feature. Unlike other pages, resizing desktop browser will NOT change the page from desktop mode to mobile mode.
Use dropdown for button group in mobile
Use button dropdown instead of button group to save more spaces for data in mobile mode. Default is true.
Use place holder for text box
Add placeholder attribute to form elements automatically. Possible values are:
  • None - no placeholder
  • Caption - use field caption (see Field Setup) as placeholder attribute value (default)
  • Title - use field title (see Field Setup) as placeholder attribute value
Page title style
Specify the page title style. Possible values are:
  • None - no page title (with Breadcrumbs)
  • Caption - table caption (without Breadcrumbs)
  • Breadcrumbs - table caption (with Breadcrumbs) (default)
  • Title - site title (with Breadcrumbs)
Authentication mode
Authentication mode. Possible values are: Windows, LDAP. If not specified, no authentication.
Notes
  1. If "Windows" is selected, only the server variable "AUTH_USER" is checked, you can use the function CurrentWindowsUser() to check the current Windows user name and the function IsWindowsUser() to check if the user is an authenticated user.
  2. If "LDAP" is selected, the following three LDAP settings are required.
  3. If User ID and/or User Level Security (see Security Settings) is enabled, after Windows/LDAP authentication, the built-in User ID/Level Security (if enabled) still applies and user table is still required. See User_CustomValidate (see Server Events and Client Scripts) server event for more information on getting User ID/Level from the user table.
Use content security policy (CSP)
Use [Content Security Policy (CSP)](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy), which is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross-Site Scripting (XSS) and data injection attacks. If enabled, the ``CspMiddleware`` will be used. There are many [directives](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy#directives) in CSP that is already set up as ``Config("CSP")``, you can customize the ``Config("CSP")`` by [Global Code](customscripts.html?id=global-code) to change the directives as you need. Also see [Content Security Policy Builder](https://github.com/paragonie/csp-builder) for details.
Use nonce (strict CSP)
Use nonce-based strict CSP. If enabled, the generated app will generate a unique cryptographic nonce (only used once) value each time it transmits a policy. This is used in conjunction with the [script tag nonce attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script#nonce). If you added your own <script> or <style> tags to your projects, you need to add the ``nonce`` attribute yourself. Also see [Why should you use a strict CSP?](https://web.dev/articles/strict-csp#why-use-strict).
Use cookie policy
For compliance with EU's General Data Protection Regulation (GDPR). If enabled, show cookie consent and privacy page.
Use Personal Data Page
For compliance with EU's General Data Protection Regulation (GDPR). If enabled, allow user to download and delete personal data.
Cookie expires (days)
Specify cookie Expires in days. See Set-Cookie.
Cookie Http only
Specify cookie HttpOnly in days.
Cookie secure
Specify cookie Secure in days.
Cookie SameSite
Specify cookie SameSite in days. Possible values: Strict, Lax, None. The None value requires the Secure attribute.
Use Swagger UI for API
Whether to allow testing API sctions with Swagger UI at http://mysite/basepath/swagger/.
Show current filter
Whether to show current filter, for example, for debug. Default is false. For reports only.
Maintenance mode
Enable maintenance mode. If enabled, all requests will be redirected to the maintenance page. If you want use your own HTML content of the maintenace page, you can set ``Config("MAINTENANCE_TEMPLATE")``in Global Code, e.g. Note that your template should contains HTML content only (no <html> and <body> tags) and should be placed in "views" subfolder of your site.
Maintenance retry after (seconds)
Set [Retry-After](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After) HTTP header for the maintenance page.

Note Above settings are defined in the settings.xml located at the "src" folder. If you are an advanced user who customize templates, you can also add your own settings to the "Project" section. Open the settings.xml with a text editor, add a ```` node under the "Project" section. Make sure you provide a unique id to the setting. Supported data type is "string", "int" and "bool". If not specified, default is "string". The setting value can be retrieved in the template during code generation (NOT during runtime of the generated script) using the PROJ.id property. Also read Template Tags and Object Properties.

 

Synchronization

During the course of project development, it is common that you have altered your database schema. To save the effort of doing the customization from scratch again, PHPMaker provides you with the ability to synchronize your project data with the database. The synchronization process can be invoked in the following situations:

When working in PHPMaker

Simply click Tools->Synchronize or click thebutton on the toolbar to perform the synchronization. PHPMaker will check automatically to see if the database schema has been altered. If there are changes, you will be prompted whether or not to proceed with the synchronization.

When opening a project file

On opening PHPMaker will automatically check the database to see if the schema has been altered. You will be prompted to keep or update to the new schema.

Note If the database contains a large number of tables/fields, this auto-synchronization feature may make reloading a project file slow. In that case you can disable this feature by unchecking Tool->Auto Synchronize.

 

Copy Table Settings

If you use database built-in query/view to make an alternate version of a table, you need to set up the table and field settings again, this tool help you quickly copies table and field settings from the source table to the view. Click Tools -> Copy Table Settings to open the following form:

 

Select the Source table and the Target table (e.g. the query/view), click OK to copy the table settings. If a field in the target table has the same name as that in the source table, field settings will also be copied.

Note This feature copies setting without validation. If settings from the source table/field are not applicable to the target table/field, errors may result. Check the settings after copying.

 

 

Copy Field Settings

When you create a Custom View, PHPMaker allows you to copy field settings from the source table. However, when database built-in query/view is used, you need to set up the field settings again, this tool help you quickly copies field settings from the source table to the view. Click Tools -> Copy Field Settings to open the following form:

 

Select the Source table and the Target table (e.g. the query/view), the fields of the target table will be listed in the left column, you can then select the respective source fields (from the specified source table) in the right column and click OK to copy the field settings.

 

 

Sort Tables Alphabetically

If you prefer to have the table list displayed in the user interface in alphabetical order, click Tools -> Sort Tables Alphabetically to do so.

Notes
  1. Re-arranging the table display order by drag-and-drop in the Table Setup page is still supported, so the display order will NOT be re-sorted automatically after synchronizing the project with your database even there are new tables added to the database. Use this tool to sort again if necessary.
  2. Only tables are sorted, the display order of the fields in the user interface or in the generated scripts will NOT be affected by this tool.
  3. The display order of the menu items in the generated scripts is still controlled by the Menu Editor, using this tool will NOT affect the menu items.

 

Languages

If you want to use multi-language project, click Tools -> Languages to select the languages you want to use in the project. See Multi-Language Project for more details.

 

 

Locale Settings

By default built-in PHP locales will be used according to the language ID of your language file, if you use the default settings, there is NO need to set up locale settings or locale files.

However, if you want to customize settings for a locale, you can click Tools -> Locale Settings, search and select the locale, the default locale settings will be loaded. After customizing the settings, click OK button to save the settings in your project. Customized locales will be shown as bold in the dropdown list, and the Reset button will be enabled when a customized locale is selected. You can click this button the reset the locale settings to default.

During generation, customized locale settings will be generated as locales files (e.g. en-GB.json) in the "locale" subfolder under the project folder.

Each locale contains the following settings:

id
Locale identifier. It must be a RFC 4646 language tags (which use hyphen, not underscore) including the region (e.g. en-US), if applicable. You can search an id from above Locale Settings form.
desc
Description of the locale, e.g. English (United States)
number
Number format of the locale in ICU DecimalFormat (see the Patterns section for complete information), e.g. #,##0.###
Type
Example
Meaning
.
#,##0.00
The decimal separator or monetary decimal separator placeholder. This will be replaced by the actual symbol used for the decimal point in your locale. Not a real period, do not translate.
,
#,##0.00
The grouping (thousand) separator placeholder. This will be replaced by the actual grouping separator in your language. Not a real comma, do not translate.
0
#,##0.###
A digit. This will be replaced by an actual digit (or a zero if there aren't enough digits). Not a real zero(digit).
#
#,##0.###
A digit, zero shows as absent. These will be replaced by actual digits. The main use of # is to show the placement of the ,(grouping separator).
currency
Currency format of the locale in ICU DecimalFormat (see the Patterns section for complete information), e.g. ¤#,##0.00
Type
Example
Meaning
¤
¤#,##0.00

#,##0.00¤

The currency symbol placeholder. This placeholder indicates the position of the currency symbol (or currency code) and the beginning of the number #. This will be replaced by a currency symbol (e.g $) or code (e.g. USD).

Notes

  1. You can move the currency symbol (¤) if it is used in a different position.
  2. Even if your currency doesn't use any decimal points, do not remove the decimal indicators (e.g., ¤#,##0.00).
  3. Do NOT add a space after currency symbol (e.g. ¤#,##0.###) for result: $12 and USD 12.
  4. ADD a manual space (e.g. ¤ #,##0.###) for result: $ 12 and USD 12.
currency_code
3-letter ISO 4217 currency code (e.g. USD)
currency_symbol
Currency symbol (e.g. $)
percent
Currency format of the locale in ICU DecimalFormat (see the Patterns section for complete information), e.g. #,##0%
Type
Example
Meaning
%
#,##0%
This marks a percent format. The position of the % symbol would be locale specific and may appear in the front, back, with or without spacing.
Not a real %, do not translate.
Note You can move the percent sign (%) if it is used in a different position.
decimal_separator
Decimal separator for replacing the . in number/currency/percent patterns. Note Using different decimal separator in number/currency/percent patterns is not supported.
grouping_separator
Grouping separator for replacing the , in number/currency/percent patterns. Note Using different grouping separator in number/currency/percent patterns is not supported.
numbering_system
Numbering system. Default is empty, default numbering system of the locale will be used. For example, "ar-*" locales will use the default "arab" numbering system. If you want to use 0-9, you can set this setting to the "latn".
date
Date format in ICU Date/Time Format Syntax, e.g. M/d/yy
time
Time format in ICU Date/Time Format Syntax, e.g. h:mm a
timezone
Time zone, see List of Supported Timezones. Default is null. If null, the default UTC will be used.

Notes
  1. Locale files will only be generated for customized locales. After customizing locale settings, remember to re-generate them and upload them to your site.
  2. From v2021, changes in the locale settings will be saved in the project. If you need to change the saved locale settings, open the project and click Tools -> Locale Settings.
  3. Instead of customzing locale settings by above Locale Settings form, you can also customize by server event (e.g. Language_Load). The following global variables (for current language) corresponds to above settings:
    $NUMBER_FORMAT, $CURRENCY_FORMAT, $CURRENCY_CODE, $CURRENCY_SYMBOL, $PERCENT_FORMAT, $DATE_FORMAT, $TIME_FORMAT, $TIME_ZONE

 

Multi-Language Property Editor

Some text properties support Multi-Language. This editor allows you to enter your property values for each language. See Multi-Language Project for details.

 

Update Template

When clicked, PHPMaker will try to check if there are updated template (and extensions) on the official website and download them to replace those on your machine. Your PC must be connected to the internet for this feature to work.

Notes
  1. The template and extensions specified in the package.json under the AppData folder (e.g. C:\Users\<user>\AppData\Roaming\PHPMaker<version>\package.json) will be updated.
  2. By default PHPMaker will also check automatically when it is started, if you prefer not to check, you can uncheck the advanced setting Update template on start (see above).
  3. To update manually, you can open a command prompt or PowerShell at the AppData folder (e.g. C:\Users\<user>\AppData\Roaming\PHPMaker<version>) and enter npm update.

 

Menu Editor

PHPMaker allow you to modify the menu in the generated site, to open the menu editor, click Tools -> Menu Editor in the main menu or click the "Menu Editor" icon in the toolbar.

Use the following toolbar buttons to manage your menu items:

Add item
Add a new menu item. You can add new menu items and link them to your own URLs. Just click the button to add and then enter your URL. Note that the URL of the List pages of the tables are uneditable, they will be generated by PHPMaker automatically.
Add child item
Add a child menu item to the focused menu item. You can also easily drag-and-drop the icon of a menu item to another menu item to create child menu items.
Delete
Delete the focused menu item
Edit item
Edit the displayed text of the focused menu item. You can also click the text directly to edit.
Post
Post the changes you make to the focused menu item
Cancel
Cancel the changes you make to the focused menu item
Refresh
Refresh the menu items
Move up one level
Move the focused menu item up one level
Move down one level
Move the focused menu item down one level
Move Up
Move the menu item up
Move Down
Move the menu item down
Expand all items
Expanse all menu items so all menu items of each level are shown
Collapse all items
Collapse all menu items so only menu items of the first level are shown
Multi-Language
Show Multi-Language Property Editor for editing unicode menu text
Search
Search for menu items

 

The properties of menu item are:

Menu Item
You can show/hide the menu items by checking/unchecking the checkboxes beside the menu item text. If a parent menu item is hidden, all the child items will also be hidden.
Icon Class Name
The icon class name. Font Awesome 5 (Free) class names are supported (e.g. "fa-solid fa-car")
URL
URL of custom menu item. (For tables, the URL is the List page of the table by default.)
Allow Anonymous User
If your custom menu items requires login, uncheck this option. For tables, this setting is same as the List permission for the Anonymous user level in Advanced Security. (See Security Settings.)
Group Title
Group Title is to be set up in the same way as a sub menu. You can enable Group Title for the parent menu item. A Group Title looks like the follows (the icon is optional):

Notes
  1. A group title is supposed to be titles only, URL is not supported.
  2. Using group titles ONLY at the root level for vertical menu is recommended.
  3. Since the top navbar does not display menu groups like vertical menu, group title should not be enabled for the navbar items at the root level. If enabled, it will only be rendered as a dropdown menu.
  4. Since submenu is vertical, you can use group title for menu items in submenus.
  5. In general, using group titles for the top navbar is not recommended.
Navbar Item
Show the menu item at the top navbar instead of the vertical menu.
Notes
  1. If all menu items are set as navbar items, the left vertical menu will be hidden and top navbar will become like a horizontal menu (see below). However, the mobile menu is still vertical. There is no Horizontal Menu extension or horizontal mobile menu.
  2. To set all menu items as navbar items, you can right the column header and choose Select all.
  3. In mobile mode, most part of the navbar cannot be seen due to screen size, navbar items are made invisible and will be shown in the vertical mobile menu instead so that users can still access them.
  4. If a menu item with sub menu items is placed at root level, the menu item does not support URL. Clicking the menu item will always open sub menu. However, in mobile mode, the menu items are shown in the wider vertical mobile menu. URL is allowed and works when users click on the menu text.

 

After modifying, make sure you click OK to save the changes.

By default, the menu is vertical.

If all menu items are set as navbar items, the left vertical menu will be hidden and top navbar will become like a horizontal menu.

In ALL cases, the mobile menu is vertical.

 

Scripts and Stylesheets

Manage JavaScripts and stylesheets for your project. These scripts will be included in the layout.php. The path(s) can be absolute URL, relative URL or absolute physical path. Absolute/Relative URL is recommended over physical path.

You can enter JavaScript and stylesheet paths in the JavaScripts(Global) and Stylesheets(Global) respectively. One line for each path.

Notes
  1. Stylesheets are handled in the same way as JavaScript, just change "js" to "css".
  2. After updating settings, make sure you re-generate config.php and upload the scripts/stylesheets to your site.
Absolute URL
Absolute URL(s), e.g.
https://host/path/xxx.js (absolute remote URL with protocol)
/path/foobar.js (absolute local URL)
**Note** Absolute physical paths (e.g. *D:\path\foobar.js*) are NOT supported.
Relative URL
Relative URL(s) (relative to the project folder), e.g. *node_modules/bootstrap-colorpicker/dist/js/bootstrap-colorpicker.min.js*

 

Composer Packages

You can add your Composer packages to the project. Search for the package you want in the Search box, select and then click the Add button to add the package to the project. The latest version will be inputted automatically. If you need to use other version, enter your version number manually.

If Composer packages are added to project, PHPMaker will run composer update after generation. The Composer packages will be installed under the vendor folder, then you can use them in your project directly in your PHP code without the need to include them yourself. If you are not familiar with Composer yet, please see Composer documentation Basic usage first.

**Note** Make sure you specify the version range correctly, see [Writing Version Constraints](https://getcomposer.org/doc/articles/versions.md#writing-version-constraints).

 

npm Packages

You can add your npm packages to the project. Search for the package you want in the Search box, select and then click the Add button to add the package to the project. The latest version will be inputted automatically. If you need to use other version, enter your version number manually. To delete a package, right click the item and select Delete.

If npm packages are added to project, PHPMaker will run npm install or npm update after generation. The npm packages will be installed under the node_modules folder, then you can use them in your project by including them with Scripts and Stylesheets (see above).

**Note** Make sure you specify the version range correctly, see [Advanced Range Syntax](https://docs.npmjs.com/cli/v6/using-npm/semver#advanced-range-syntax).

 

Database, Table and Field Variable Names

When writing server events and client scripts, you may need to specify database, table or field by their variable names, e.g.

See [Global Functions](functions.html) for more information about the function arguments.

The variable name of the linked database can be found in the Add Linked Table form, read Linked Tables.

To check the table/field variable names and entity/class method names used by the project, you can go to the Database pane, right click the table and select Object Properties, you will see the variable names.

For table and field variable names, if the table/field name is alphanumeric, the table/field variable name should be same as the table/field name. Otherwise, spaces are replaced by underscores, and other non alphanumeric characters are replaced by their hexadecimal string representation of their unicode value. If the variable is a reserved word or starts with a digit, it will be prepended with an underscore.

In general, the entity class name for a table is Pascal case of the original table name, and the getter/setter names for fields are in camel case.

 

 ©2002-2025 e.World Technology Ltd. All rights reserved.