Page tree
Skip to end of metadata
Go to start of metadata

Requires: phpFox version >= 4.6.0

As you have known, from version 4.6.0, we have let developers control that their Javascript files can be bundled or not when Bundle JavaScript & CSS feature is enabled on the phpFox site. So, purpose of this tutorial is providing the guideline in case you want apply this feature to your files.

  • First, you need to add a plugin/hook name bundle__start in your apps/themes.
  • Then, add the list of files that will be bundled with Core files.
$aBundleScripts[] = [
    '{file_path}' => '{product_type}_{product_dir_name}',
];

{file_path}: the relative path of file with assets directory.
{product_type}: type of your product. app or flavors (App or Theme)
{product_dir_name}: name of your product directory.

Below is example of Core Blogs app:

$aBundleScripts[] = [
    'autoload.js' => 'app_core-blogs',
];
  • No labels