Enhance PHPMaker project with Material Design template.
Open console and goto inside PHPMaker project folder, then run command:
git clone https://github.com/erikfva/plugins2019.git
Edit plugins2019/phpfn.php file and configure your main project namespace. You can find this information in the begining of your phpfn15.php file into main project folder.
<?php
/**
* PHPMaker Common classes and functions
* (C) 2002-2019 e.World Technology Limited. All rights reserved.
*/
namespace PHPMaker2019\contab;<?php
/** CONFIG YOUR MAIN PROJECT NAMESPACE HERE!!! **/
use PHPMaker2019\contab as phpfn;
/* **************************************** */In this sample the namespace is contab.
In PHPMaker select Tools/Advanced Settings and checkin Disable project CSS styles

In Server Events/Global/All Pages/Page_Head include php code:
include_once "plugins2019/plg_coolui/header.php";In Server Events/Global/All Pages/Page_Foot include php code:
include_once "plugins2019/plg_coolui/footer.php";





