* @gitea Joomla Component Builder * @github Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // No direct access to this file defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Filesystem\File; use Joomla\CMS\Filesystem\Folder; use VDM\Joomla\Utilities\StringHelper; use VDM\Joomla\Utilities\ArrayHelper; use VDM\Joomla\Utilities\ObjectHelper; use VDM\Joomla\Utilities\FileHelper; use VDM\Joomla\Componentbuilder\Compiler\Factory as CFactory; use VDM\Joomla\Componentbuilder\Compiler\Utilities\Placefix; use VDM\Joomla\Componentbuilder\Compiler\Utilities\Indent; use VDM\Joomla\Componentbuilder\Compiler\Utilities\Line; use VDM\Joomla\Componentbuilder\Compiler\Utilities\Minify; /** * Infusion class * @deprecated 3.3 */ class Infusion extends Interpretation { public $langFiles = array(); /** * Switch to remove site folder * * @var bool * @deprecated 3.3 Use CFactory::_('Config')->remove_site_folder; */ public $removeSiteFolder = false; /** * Switch to remove site edit folder * * @var bool * @deprecated 3.3 Use CFactory::_('Config')->remove_site_edit_folder; */ public $removeSiteEditFolder = true; /** * Constructor */ public function __construct() { // first we run the perent constructor if (parent::__construct()) { // infuse the data into the structure return $this->buildFileContent(); } return false; } /** * Build the content for the structure * * * @return boolean on success * */ protected function buildFileContent() { if (CFactory::_('Component')->isArray('admin_views')) { // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; $component_context = CFactory::_('Config')->component_context; // Trigger Event: jcb_ce_onBeforeBuildFilesContent CFactory::_('Event')->trigger( 'jcb_ce_onBeforeBuildFilesContent', array(&$component_context, &$this->componentData, &$fileContentStatic, &$fileContentDynamic, &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); // COMPONENT CFactory::_('Content')->set('COMPONENT', CFactory::_('Placeholder')->get('COMPONENT')); // Component CFactory::_('Content')->set('Component', CFactory::_('Placeholder')->get('Component')); // component CFactory::_('Content')->set('component', CFactory::_('Placeholder')->get('component')); // COMPANYNAME $companyname = CFactory::_('Component')->get('companyname'); CFactory::_('Content')->set('COMPANYNAME', trim( (string) JFilterOutput::cleanText($companyname) )); // CREATIONDATE CFactory::_('Content')->set('CREATIONDATE', JFactory::getDate(CFactory::_('Component')->get('created'))->format( 'jS F, Y' )); CFactory::_('Content')->set('GLOBALCREATIONDATE', CFactory::_('Content')->get('CREATIONDATE')); // BUILDDATE CFactory::_('Content')->set('BUILDDATE', JFactory::getDate( CFactory::_('Config')->get('build_date', 'now'))->format('jS F, Y')); CFactory::_('Content')->set('GLOBALBUILDDATE', CFactory::_('Content')->get('BUILDDATE')); // AUTHOR $author = CFactory::_('Component')->get('author'); CFactory::_('Content')->set('AUTHOR', trim( (string) JFilterOutput::cleanText($author) )); // AUTHOREMAIL CFactory::_('Content')->set('AUTHOREMAIL', trim((string) CFactory::_('Component')->get('email', ''))); // AUTHORWEBSITE CFactory::_('Content')->set('AUTHORWEBSITE', trim((string) CFactory::_('Component')->get('website', ''))); // COPYRIGHT CFactory::_('Content')->set('COPYRIGHT', trim((string) CFactory::_('Component')->get('copyright', ''))); // LICENSE CFactory::_('Content')->set('LICENSE', trim((string) CFactory::_('Component')->get('license', ''))); // VERSION CFactory::_('Content')->set('VERSION', trim((string) CFactory::_('Component')->get('component_version', ''))); // set the actual global version CFactory::_('Content')->set('ACTUALVERSION', CFactory::_('Content')->get('VERSION')); // do some Tweaks to the version based on selected options if (strpos((string) CFactory::_('Content')->get('VERSION'), '.') !== false) { $versionArray = explode( '.', (string) CFactory::_('Content')->get('VERSION') ); } // load only first two values if (isset($versionArray) && ArrayHelper::check( $versionArray ) && CFactory::_('Component')->get('mvc_versiondate', 0) == 2) { CFactory::_('Content')->set('VERSION', $versionArray[0] . '.' . $versionArray[1] . '.x'); } // load only the first value elseif (isset($versionArray) && ArrayHelper::check( $versionArray ) && CFactory::_('Component')->get('mvc_versiondate', 0) == 3) { CFactory::_('Content')->set('VERSION', $versionArray[0] . '.x.x'); } unset($versionArray); // set the global version in case CFactory::_('Content')->set('GLOBALVERSION', CFactory::_('Content')->get('VERSION')); // set the joomla target xml version CFactory::_('Content')->set('XMLVERSION', CFactory::_('Config')->joomla_versions[CFactory::_('Config')->joomla_version]['xml_version']); // Component_name $name = CFactory::_('Component')->get('name'); CFactory::_('Content')->set('Component_name', JFilterOutput::cleanText($name)); // SHORT_DISCRIPTION $short_description = CFactory::_('Component')->get('short_description'); CFactory::_('Content')->set('SHORT_DESCRIPTION', trim( (string) JFilterOutput::cleanText( $short_description ) )); // DESCRIPTION CFactory::_('Content')->set('DESCRIPTION', trim((string) CFactory::_('Component')->get('description'))); // COMP_IMAGE_TYPE CFactory::_('Content')->set('COMP_IMAGE_TYPE', $this->setComponentImageType(CFactory::_('Component')->get('image'))); // ACCESS_SECTIONS CFactory::_('Content')->set('ACCESS_SECTIONS', $this->setAccessSections()); // CONFIG_FIELDSETS $keepLang = CFactory::_('Config')->lang_target; CFactory::_('Config')->lang_target = 'admin'; // start loading the category tree scripts CFactory::_('Content')->set('CATEGORY_CLASS_TREES', ''); // run the field sets for first time $this->setConfigFieldsets(1); CFactory::_('Config')->lang_target = $keepLang; // ADMINJS CFactory::_('Content')->set('ADMINJS', CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_js'] )); // SITEJS CFactory::_('Content')->set('SITEJS', CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_js'] )); // ADMINCSS CFactory::_('Content')->set('ADMINCSS', CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_css_admin'] )); // SITECSS CFactory::_('Content')->set('SITECSS', CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_css_site'] )); // CUSTOM_HELPER_SCRIPT CFactory::_('Content')->set('CUSTOM_HELPER_SCRIPT', CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_php_helper_admin'] )); // BOTH_CUSTOM_HELPER_SCRIPT CFactory::_('Content')->set('BOTH_CUSTOM_HELPER_SCRIPT', CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_php_helper_both'] )); // ADMIN_GLOBAL_EVENT_HELPER if (!CFactory::_('Content')->exist('ADMIN_GLOBAL_EVENT')) { CFactory::_('Content')->set('ADMIN_GLOBAL_EVENT', ''); } if (!CFactory::_('Content')->exist('ADMIN_GLOBAL_EVENT_HELPER')) { CFactory::_('Content')->set('ADMIN_GLOBAL_EVENT_HELPER', ''); } // now load the data for the global event if needed if (CFactory::_('Component')->get('add_admin_event', 0) == 1) { // ADMIN_GLOBAL_EVENT CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT', PHP_EOL . PHP_EOL . '// Trigger the Global Admin Event'); CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT', PHP_EOL . CFactory::_('Content')->get('Component') . 'Helper::globalEvent($document);'); // ADMIN_GLOBAL_EVENT_HELPER CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT_HELPER', PHP_EOL . PHP_EOL . Indent::_(1) . '/**'); CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . '* The Global Admin Event Method.'); CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . '**/'); CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . 'public static function globalEvent($document)'); CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . '{'); CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT_HELPER', PHP_EOL . CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_php_admin_event'] )); CFactory::_('Content')->add('ADMIN_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . '}'); } // now load the readme file if needed if (CFactory::_('Component')->get('addreadme', 0) == 1) { CFactory::_('Content')->add('EXSTRA_ADMIN_FILES', PHP_EOL . Indent::_(3) . "README.txt"); } // HELPER_CREATEUSER CFactory::_('Content')->add('HELPER_CREATEUSER', $this->setCreateUserHelperMethod( CFactory::_('Component')->get('creatuserhelper') )); // HELP CFactory::_('Content')->set('HELP', $this->noHelp()); // HELP_SITE CFactory::_('Content')->set('HELP_SITE', $this->noHelp()); // build route parse switch CFactory::_('Content')->set('ROUTER_PARSE_SWITCH', ''); // build route views CFactory::_('Content')->set('ROUTER_BUILD_VIEWS', ''); // add the helper emailer if set CFactory::_('Content')->set('HELPER_EMAIL', $this->addEmailHelper()); // load the global placeholders foreach (CFactory::_('Component.Placeholder')->get() as $globalPlaceholder => $gloabalValue ) { CFactory::_('Content')->set($globalPlaceholder, $gloabalValue); } // reset view array $viewarray = array(); $site_edit_view_array = array(); // start dynamic build foreach (CFactory::_('Component')->get('admin_views') as $view) { // set the target CFactory::_('Config')->build_target = 'admin'; CFactory::_('Config')->lang_target = 'admin'; // set local names $nameSingleCode = $view['settings']->name_single_code; $nameListCode = $view['settings']->name_list_code; // set the view placeholders $this->setViewPlaceholders($view['settings']); // set site edit view array if (isset($view['edit_create_site_view']) && is_numeric( $view['edit_create_site_view'] ) && $view['edit_create_site_view'] > 0) { $site_edit_view_array[] = Indent::_(4) . "'" . $nameSingleCode . "'"; CFactory::_('Config')->lang_target = 'both'; // insure site view does not get removed CFactory::_('Config')->remove_site_edit_folder = false; } // check if help is being loaded $this->checkHelp($nameSingleCode); // set custom admin view list links $this->setCustomAdminViewListLink( $view, $nameListCode ); // set view array $viewarray[] = Indent::_(4) . "'" . $nameSingleCode . "' => '" . $nameListCode . "'"; // set the view names if (isset($view['settings']->name_single) && $view['settings']->name_single != 'null') { // set license per view if needed $this->setLockLicensePer( $nameSingleCode, CFactory::_('Config')->build_target ); $this->setLockLicensePer( $nameListCode, CFactory::_('Config')->build_target ); // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onBeforeBuildAdminEditViewContent CFactory::_('Event')->trigger( 'jcb_ce_onBeforeBuildAdminEditViewContent', array(&$component_context, &$view, &$nameSingleCode, &$nameListCode, &$fileContentStatic, &$fileContentDynamic[$nameSingleCode], &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); // FIELDSETS <<>> CFactory::_('Content')->set_($nameSingleCode, 'FIELDSETS', $this->setFieldSet( $view, CFactory::_('Config')->component_code_name, $nameSingleCode, $nameListCode )); // ACCESSCONTROL <<>> CFactory::_('Content')->set_($nameSingleCode, 'ACCESSCONTROL', $this->setFieldSetAccessControl( $nameSingleCode )); // LINKEDVIEWITEMS <<>> CFactory::_('Content')->set_($nameSingleCode, 'LINKEDVIEWITEMS', ''); // ADDTOOLBAR <<>> CFactory::_('Content')->set_($nameSingleCode, 'ADDTOOLBAR', $this->setAddToolBar($view)); // set the script for this view $this->buildTheViewScript($view); // VIEW_SCRIPT CFactory::_('Content')->set_($nameSingleCode, 'VIEW_SCRIPT', $this->setViewScript( $nameSingleCode, 'fileScript' )); // EDITBODYSCRIPT CFactory::_('Content')->set_($nameSingleCode, 'EDITBODYSCRIPT', $this->setViewScript( $nameSingleCode, 'footerScript' )); // AJAXTOKE <<>> CFactory::_('Content')->set_($nameSingleCode, 'AJAXTOKE', $this->setAjaxToke( $nameSingleCode )); // DOCUMENT_CUSTOM_PHP <<>> if ($phpDocument = CFactory::_('Customcode.Dispenser')->get( 'php_document', $nameSingleCode, PHP_EOL, null, true, false )) { CFactory::_('Content')->set_($nameSingleCode, 'DOCUMENT_CUSTOM_PHP', str_replace( '$document->', '$this->document->', (string) $phpDocument )); // clear some memory unset($phpDocument); } else { CFactory::_('Content')->set_($nameSingleCode, 'DOCUMENT_CUSTOM_PHP', ''); } // LINKEDVIEWTABLESCRIPTS <<>> CFactory::_('Content')->set_($nameSingleCode, 'LINKEDVIEWTABLESCRIPTS', ''); // VALIDATEFIX <<>> CFactory::_('Content')->set_($nameSingleCode, 'VALIDATIONFIX', $this->setValidationFix( $nameSingleCode, CFactory::_('Content')->get('Component') )); // EDITBODY <<>> CFactory::_('Content')->set_($nameSingleCode, 'EDITBODY', $this->setEditBody($view)); // EDITBODYFADEIN <<>> CFactory::_('Content')->set_($nameSingleCode, 'EDITBODYFADEIN', $this->setFadeInEfect($view)); // JTABLECONSTRUCTOR <<>> CFactory::_('Content')->set_($nameSingleCode, 'JTABLECONSTRUCTOR', $this->setJtableConstructor( $nameSingleCode )); // JTABLEALIASCATEGORY <<>> CFactory::_('Content')->set_($nameSingleCode, 'JTABLEALIASCATEGORY', $this->setJtableAliasCategory( $nameSingleCode )); // METHOD_GET_ITEM <<>> CFactory::_('Content')->set_($nameSingleCode, 'METHOD_GET_ITEM', $this->setMethodGetItem( $nameSingleCode )); // LINKEDVIEWGLOBAL <<>> CFactory::_('Content')->set_($nameSingleCode, 'LINKEDVIEWGLOBAL', ''); // LINKEDVIEWMETHODS <<>> CFactory::_('Content')->set_($nameSingleCode, 'LINKEDVIEWMETHODS', ''); // JMODELADMIN_BEFORE_DELETE <<>> CFactory::_('Content')->set_($nameSingleCode, 'JMODELADMIN_BEFORE_DELETE', CFactory::_('Customcode.Dispenser')->get( 'php_before_delete', $nameSingleCode, PHP_EOL )); // JMODELADMIN_AFTER_DELETE <<>> CFactory::_('Content')->set_($nameSingleCode, 'JMODELADMIN_AFTER_DELETE', CFactory::_('Customcode.Dispenser')->get( 'php_after_delete', $nameSingleCode, PHP_EOL . PHP_EOL )); // JMODELADMIN_BEFORE_DELETE <<>> CFactory::_('Content')->set_($nameSingleCode, 'JMODELADMIN_BEFORE_PUBLISH', CFactory::_('Customcode.Dispenser')->get( 'php_before_publish', $nameSingleCode, PHP_EOL )); // JMODELADMIN_AFTER_DELETE <<>> CFactory::_('Content')->set_($nameSingleCode, 'JMODELADMIN_AFTER_PUBLISH', CFactory::_('Customcode.Dispenser')->get( 'php_after_publish', $nameSingleCode, PHP_EOL . PHP_EOL )); // CHECKBOX_SAVE <<>> CFactory::_('Content')->set_($nameSingleCode, 'CHECKBOX_SAVE', $this->setCheckboxSave( $nameSingleCode )); // METHOD_ITEM_SAVE <<>> CFactory::_('Content')->set_($nameSingleCode, 'METHOD_ITEM_SAVE', $this->setMethodItemSave( $nameSingleCode )); // POSTSAVEHOOK <<>> CFactory::_('Content')->set_($nameSingleCode, 'POSTSAVEHOOK', CFactory::_('Customcode.Dispenser')->get( 'php_postsavehook', $nameSingleCode, PHP_EOL, null, true, PHP_EOL . Indent::_(2) . "return;", PHP_EOL . PHP_EOL . Indent::_(2) . "return;" )); // VIEWCSS <<>> CFactory::_('Content')->set_($nameSingleCode, 'VIEWCSS', CFactory::_('Customcode.Dispenser')->get( 'css_view', $nameSingleCode, '', null, true )); // add css to front end if (isset($view['edit_create_site_view']) && is_numeric($view['edit_create_site_view']) && $view['edit_create_site_view'] > 0) { CFactory::_('Content')->set_($nameSingleCode, 'SITE_VIEWCSS', CFactory::_('Content')->get_($nameSingleCode,'VIEWCSS')); // check if we should add a create menu if ($view['edit_create_site_view'] == 2) { // SITE_MENU_XML <<>> CFactory::_('Content')->set_($nameSingleCode, 'SITE_MENU_XML', $this->setAdminViewMenu( $nameSingleCode, $view )); } // SITE_ADMIN_VIEW_CONTROLLER_HEADER <<>> add the header details for the controller CFactory::_('Content')->set_($nameSingleCode, 'SITE_ADMIN_VIEW_CONTROLLER_HEADER', $this->setFileHeader( 'site.admin.view.controller', $nameSingleCode )); // SITE_ADMIN_VIEW_MODEL_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($nameSingleCode, 'SITE_ADMIN_VIEW_MODEL_HEADER', $this->setFileHeader( 'site.admin.view.model', $nameSingleCode )); // SITE_ADMIN_VIEW_HTML_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($nameSingleCode, 'SITE_ADMIN_VIEW_HTML_HEADER', $this->setFileHeader( 'site.admin.view.html', $nameSingleCode )); // SITE_ADMIN_VIEW_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($nameSingleCode, 'SITE_ADMIN_VIEW_HEADER', $this->setFileHeader( 'site.admin.view', $nameSingleCode )); } // TABLAYOUTFIELDSARRAY <<>> add the tab layout fields array to the model CFactory::_('Content')->set_($nameSingleCode, 'TABLAYOUTFIELDSARRAY', $this->getTabLayoutFieldsArray( $nameSingleCode )); // ADMIN_VIEW_CONTROLLER_HEADER <<>> add the header details for the controller CFactory::_('Content')->set_($nameSingleCode, 'ADMIN_VIEW_CONTROLLER_HEADER', $this->setFileHeader( 'admin.view.controller', $nameSingleCode )); // ADMIN_VIEW_MODEL_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($nameSingleCode, 'ADMIN_VIEW_MODEL_HEADER', $this->setFileHeader( 'admin.view.model', $nameSingleCode )); // ADMIN_VIEW_HTML_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($nameSingleCode, 'ADMIN_VIEW_HTML_HEADER', $this->setFileHeader( 'admin.view.html', $nameSingleCode )); // ADMIN_VIEW_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($nameSingleCode, 'ADMIN_VIEW_HEADER', $this->setFileHeader( 'admin.view', $nameSingleCode )); // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onAfterBuildAdminEditViewContent CFactory::_('Event')->trigger( 'jcb_ce_onAfterBuildAdminEditViewContent', array(&$component_context, &$view, &$nameSingleCode, &$nameListCode, &$fileContentStatic, &$fileContentDynamic[$nameSingleCode], &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); } // set the views names if (isset($view['settings']->name_list) && $view['settings']->name_list != 'null') { CFactory::_('Config')->lang_target = 'admin'; // ICOMOON <<>> CFactory::_('Content')->set_($nameListCode, 'ICOMOON', $view['icomoon']); // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onBeforeBuildAdminListViewContent CFactory::_('Event')->trigger( 'jcb_ce_onBeforeBuildAdminListViewContent', array(&$component_context, &$view, &$nameSingleCode, &$nameListCode, &$fileContentStatic, &$fileContentDynamic[$nameListCode], &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); // set the export/import option if (isset($view['port']) && $view['port'] || 1 == $view['settings']->add_custom_import) { $this->eximportView[$nameListCode] = true; if (1 == $view['settings']->add_custom_import) { // this view has custom import scripting $this->importCustomScripts[$nameListCode] = true; // set all custom scripts $this->setImportCustomScripts( $nameListCode ); } } else { $this->eximportView[$nameListCode] = false; } // set Auto check in function if (isset($view['checkin']) && $view['checkin'] == 1) { // AUTOCHECKIN <<>> CFactory::_('Content')->set_($nameListCode, 'AUTOCHECKIN', $this->setAutoCheckin( $nameSingleCode, CFactory::_('Config')->component_code_name )); // CHECKINCALL <<>> CFactory::_('Content')->set_($nameListCode, 'CHECKINCALL', $this->setCheckinCall()); } else { // AUTOCHECKIN <<>> CFactory::_('Content')->set_($nameListCode, 'AUTOCHECKIN', ''); // CHECKINCALL <<>> CFactory::_('Content')->set_($nameListCode, 'CHECKINCALL', ''); } // admin list file contnet CFactory::_('Content')->set_($nameListCode, 'ADMIN_JAVASCRIPT_FILE', $this->setViewScript( $nameListCode, 'list_fileScript' )); // ADMIN_CUSTOM_BUTTONS_LIST CFactory::_('Content')->set_($nameListCode, 'ADMIN_CUSTOM_BUTTONS_LIST', $this->setCustomButtons($view, 3, Indent::_(1))); CFactory::_('Content')->set_($nameListCode, 'ADMIN_CUSTOM_FUNCTION_ONLY_BUTTONS_LIST', $this->setFunctionOnlyButtons( $nameListCode )); // GET_ITEMS_METHOD_STRING_FIX <<>> CFactory::_('Content')->set_($nameListCode, 'GET_ITEMS_METHOD_STRING_FIX', $this->setGetItemsMethodStringFix( $nameSingleCode, $nameListCode, CFactory::_('Content')->get('Component') )); // GET_ITEMS_METHOD_AFTER_ALL <<>> CFactory::_('Content')->set_($nameListCode, 'GET_ITEMS_METHOD_AFTER_ALL', CFactory::_('Customcode.Dispenser')->get( 'php_getitems_after_all', $nameSingleCode, PHP_EOL )); // SELECTIONTRANSLATIONFIX <<>> CFactory::_('Content')->set_($nameListCode, 'SELECTIONTRANSLATIONFIX', $this->setSelectionTranslationFix( $nameListCode, CFactory::_('Content')->get('Component') )); // SELECTIONTRANSLATIONFIXFUNC <<>> CFactory::_('Content')->set_($nameListCode, 'SELECTIONTRANSLATIONFIXFUNC', $this->setSelectionTranslationFixFunc( $nameListCode, CFactory::_('Content')->get('Component') )); // FILTER_FIELDS <<>> CFactory::_('Content')->set_($nameListCode, 'FILTER_FIELDS', $this->setFilterFieldsArray( $nameSingleCode, $nameListCode )); // STOREDID <<>> CFactory::_('Content')->set_($nameListCode, 'STOREDID', $this->setStoredId( $nameSingleCode, $nameListCode )); // POPULATESTATE <<>> CFactory::_('Content')->set_($nameListCode, 'POPULATESTATE', $this->setPopulateState( $nameSingleCode, $nameListCode )); // SORTFIELDS <<>> CFactory::_('Content')->set_($nameListCode, 'SORTFIELDS', $this->setSortFields( $nameListCode )); // CATEGORY_VIEWS CFactory::_('Content')->add('ROUTER_CATEGORY_VIEWS', $this->setRouterCategoryViews( $nameSingleCode, $nameListCode )); // FILTERFIELDDISPLAYHELPER <<>> CFactory::_('Content')->set_($nameListCode, 'FILTERFIELDDISPLAYHELPER', $this->setFilterFieldSidebarDisplayHelper( $nameSingleCode, $nameListCode )); // BATCHDISPLAYHELPER <<>> CFactory::_('Content')->set_($nameListCode, 'BATCHDISPLAYHELPER', $this->setBatchDisplayHelper( $nameSingleCode, $nameListCode )); // FILTERFUNCTIONS <<>> CFactory::_('Content')->set_($nameListCode, 'FILTERFUNCTIONS', $this->setFilterFieldHelper( $nameSingleCode, $nameListCode )); // FIELDFILTERSETS <<>> CFactory::_('Content')->set_('filter_' . $nameListCode,'FIELDFILTERSETS', $this->setFieldFilterSet( $nameSingleCode, $nameListCode )); // FIELDLISTSETS <<>> CFactory::_('Content')->set_('filter_' . $nameListCode, 'FIELDLISTSETS', $this->setFieldFilterListSet( $nameSingleCode, $nameListCode )); // LISTQUERY <<>> CFactory::_('Content')->set_($nameListCode, 'LISTQUERY', $this->setListQuery( $nameSingleCode, $nameListCode )); // MODELEXPORTMETHOD <<>> CFactory::_('Content')->set_($nameListCode, 'MODELEXPORTMETHOD', $this->setGetItemsModelMethod( $nameSingleCode, $nameListCode )); // MODELEXIMPORTMETHOD <<>> CFactory::_('Content')->set_($nameListCode, 'CONTROLLEREXIMPORTMETHOD', $this->setControllerEximportMethod( $nameSingleCode, $nameListCode )); // EXPORTBUTTON <<>> CFactory::_('Content')->set_($nameListCode, 'EXPORTBUTTON', $this->setExportButton( $nameSingleCode, $nameListCode )); // IMPORTBUTTON <<>> CFactory::_('Content')->set_($nameListCode, 'IMPORTBUTTON', $this->setImportButton( $nameSingleCode, $nameListCode )); // VIEWS_DEFAULT_BODY <<>> CFactory::_('Content')->set_($nameListCode, 'VIEWS_DEFAULT_BODY', $this->setDefaultViewsBody( $nameSingleCode, $nameListCode )); // LISTHEAD <<>> CFactory::_('Content')->set_($nameListCode, 'LISTHEAD', $this->setListHead( $nameSingleCode, $nameListCode )); // LISTBODY <<>> CFactory::_('Content')->set_($nameListCode, 'LISTBODY', $this->setListBody( $nameSingleCode, $nameListCode )); // LISTCOLNR <<>> CFactory::_('Content')->set_($nameListCode, 'LISTCOLNR', $this->setListColnr( $nameListCode )); // JVIEWLISTCANDO <<>> CFactory::_('Content')->set_($nameListCode, 'JVIEWLISTCANDO', $this->setJviewListCanDo( $nameSingleCode, $nameListCode )); // VIEWSCSS <<>> CFactory::_('Content')->set_($nameListCode, 'VIEWSCSS', CFactory::_('Customcode.Dispenser')->get( 'css_views', $nameSingleCode, '', null, true )); // ADMIN_DIPLAY_METHOD <<>> CFactory::_('Content')->set_($nameListCode, 'ADMIN_DIPLAY_METHOD', $this->setAdminViewDisplayMethod( $nameListCode )); // VIEWS_FOOTER_SCRIPT <<>> $scriptNote = PHP_EOL . '//' . Line::_(__Line__, __Class__) . ' ' . $nameListCode . ' footer script'; if (($footerScript = CFactory::_('Customcode.Dispenser')->get( 'views_footer', $nameSingleCode, '', $scriptNote, true, false, PHP_EOL )) !== false && StringHelper::check($footerScript)) { // only minfy if no php is added to the footer script if (CFactory::_('Config')->get('minify', 0) && strpos((string) $footerScript, 'set_($nameListCode, 'VIEWS_FOOTER_SCRIPT', PHP_EOL . '"); // clear some memory unset($footerScript); } else { CFactory::_('Content')->set_($nameListCode, 'VIEWS_FOOTER_SCRIPT', ''); } // ADMIN_VIEWS_CONTROLLER_HEADER <<>> add the header details for the controller CFactory::_('Content')->set_($nameListCode, 'ADMIN_VIEWS_CONTROLLER_HEADER', $this->setFileHeader( 'admin.views.controller', $nameListCode )); // ADMIN_VIEWS_MODEL_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($nameListCode, 'ADMIN_VIEWS_MODEL_HEADER', $this->setFileHeader( 'admin.views.model', $nameListCode )); // ADMIN_VIEWS_HTML_HEADER <<>> add the header details for the views CFactory::_('Content')->set_($nameListCode, 'ADMIN_VIEWS_HTML_HEADER', $this->setFileHeader( 'admin.views.html', $nameListCode )); // ADMIN_VIEWS_HEADER <<>> add the header details for the views CFactory::_('Content')->set_($nameListCode, 'ADMIN_VIEWS_HEADER', $this->setFileHeader( 'admin.views', $nameListCode )); // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onAfterBuildAdminListViewContent CFactory::_('Event')->trigger( 'jcb_ce_onAfterBuildAdminListViewContent', array(&$component_context, &$view, &$nameSingleCode, &$nameListCode, &$fileContentStatic, &$fileContentDynamic[$nameListCode], &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); } // set u fields used in batch CFactory::_('Content')->set_($nameSingleCode, 'UNIQUEFIELDS', $this->setUniqueFields( $nameSingleCode )); // TITLEALIASFIX <<>> CFactory::_('Content')->set_($nameSingleCode, 'TITLEALIASFIX', $this->setAliasTitleFix( $nameSingleCode )); // GENERATENEWTITLE <<>> CFactory::_('Content')->set_($nameSingleCode, 'GENERATENEWTITLE', $this->setGenerateNewTitle( $nameSingleCode )); // GENERATENEWALIAS <<>> CFactory::_('Content')->set_($nameSingleCode, 'GENERATENEWALIAS', $this->setGenerateNewAlias( $nameSingleCode )); // MODEL_BATCH_COPY <<>> CFactory::_('Content')->set_($nameSingleCode, 'MODEL_BATCH_COPY', $this->setBatchCopy($nameSingleCode)); // MODEL_BATCH_MOVE <<>> CFactory::_('Content')->set_($nameSingleCode, 'MODEL_BATCH_MOVE', $this->setBatchMove($nameSingleCode)); // BATCH_ONCLICK_CANCEL_SCRIPT <<>> CFactory::_('Content')->set_($nameListCode, 'BATCH_ONCLICK_CANCEL_SCRIPT', ''); // TODO <-- must still be build // JCONTROLLERFORM_ALLOWADD <<>> CFactory::_('Content')->set_($nameSingleCode, 'JCONTROLLERFORM_ALLOWADD', $this->setJcontrollerAllowAdd( $nameSingleCode, $nameListCode )); // JCONTROLLERFORM_BEFORECANCEL <<>> CFactory::_('Content')->set_($nameSingleCode, 'JCONTROLLERFORM_BEFORECANCEL', CFactory::_('Customcode.Dispenser')->get( 'php_before_cancel', $nameSingleCode, PHP_EOL, null, false, '' )); // JCONTROLLERFORM_AFTERCANCEL <<>> CFactory::_('Content')->set_($nameSingleCode, 'JCONTROLLERFORM_AFTERCANCEL', CFactory::_('Customcode.Dispenser')->get( 'php_after_cancel', $nameSingleCode, PHP_EOL, null, false, '' )); // JCONTROLLERFORM_ALLOWEDIT <<>> CFactory::_('Content')->set_($nameSingleCode, 'JCONTROLLERFORM_ALLOWEDIT', $this->setJcontrollerAllowEdit( $nameSingleCode, $nameListCode )); // JMODELADMIN_GETFORM <<>> CFactory::_('Content')->set_($nameSingleCode, 'JMODELADMIN_GETFORM', $this->setJmodelAdminGetForm( $nameSingleCode, $nameListCode )); // JMODELADMIN_ALLOWEDIT <<>> CFactory::_('Content')->set_($nameSingleCode, 'JMODELADMIN_ALLOWEDIT', $this->setJmodelAdminAllowEdit( $nameSingleCode, $nameListCode )); // JMODELADMIN_CANDELETE <<>> CFactory::_('Content')->set_($nameSingleCode, 'JMODELADMIN_CANDELETE', $this->setJmodelAdminCanDelete( $nameSingleCode, $nameListCode )); // JMODELADMIN_CANEDITSTATE <<>> CFactory::_('Content')->set_($nameSingleCode, 'JMODELADMIN_CANEDITSTATE', $this->setJmodelAdminCanEditState( $nameSingleCode, $nameListCode )); // set custom admin view Toolbare buttons // CUSTOM_ADMIN_DYNAMIC_BUTTONS <<>> CFactory::_('Content')->set_($nameListCode, 'CUSTOM_ADMIN_DYNAMIC_BUTTONS', $this->setCustomAdminDynamicButton( $nameListCode )); // CUSTOM_ADMIN_DYNAMIC_BUTTONS_CONTROLLER <<>> CFactory::_('Content')->set_($nameListCode, 'CUSTOM_ADMIN_DYNAMIC_BUTTONS_CONTROLLER', $this->setCustomAdminDynamicButtonController( $nameListCode )); // set helper router CFactory::_('Content')->add('ROUTEHELPER', $this->setRouterHelp( $nameSingleCode, $nameListCode )); if (isset($view['edit_create_site_view']) && is_numeric( $view['edit_create_site_view'] ) && $view['edit_create_site_view'] > 0) { // add needed router stuff for front edit views CFactory::_('Content')->add('ROUTER_PARSE_SWITCH', $this->routerParseSwitch( $nameSingleCode, null, false )); CFactory::_('Content')->add('ROUTER_BUILD_VIEWS', $this->routerBuildViews( $nameSingleCode )); } // ACCESS_SECTIONS CFactory::_('Content')->add('ACCESS_SECTIONS', $this->setAccessSectionsCategory( $nameSingleCode, $nameListCode )); // set the Joomla Fields ACCESS section if needed if (isset($view['joomla_fields']) && $view['joomla_fields'] == 1) { CFactory::_('Content')->add('ACCESS_SECTIONS', $this->setAccessSectionsJoomlaFields()); } // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onAfterBuildAdminViewContent CFactory::_('Event')->trigger( 'jcb_ce_onAfterBuildAdminViewContent', array(&$component_context, &$view, &$nameSingleCode, &$nameListCode, &$fileContentStatic, &$fileContentDynamic, &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); } // all fields stored in database CFactory::_('Content')->set('ALL_COMPONENT_FIELDS', CFactory::_('Registry')->varExport('all_component_fields', 1)); // setup the layouts $this->setCustomViewLayouts(); // setup custom_admin_views and all needed stuff for the site if (CFactory::_('Component')->isArray('custom_admin_views')) { CFactory::_('Config')->build_target = 'custom_admin'; CFactory::_('Config')->lang_target = 'admin'; // start dynamic build foreach (CFactory::_('Component')->get('custom_admin_views') as $view) { // for single views CFactory::_('Content')->set_($view['settings']->code, 'SView', $view['settings']->Code); CFactory::_('Content')->set_($view['settings']->code, 'sview', $view['settings']->code); CFactory::_('Content')->set_($view['settings']->code, 'SVIEW', $view['settings']->CODE); // for list views CFactory::_('Content')->set_($view['settings']->code, 'SViews', $view['settings']->Code); CFactory::_('Content')->set_($view['settings']->code, 'sviews', $view['settings']->code); CFactory::_('Content')->set_($view['settings']->code, 'SVIEWS', $view['settings']->CODE); // add to lang array CFactory::_('Language')->set( CFactory::_('Config')->lang_target, CFactory::_('Config')->lang_prefix . '_' . $view['settings']->CODE, $view['settings']->name ); CFactory::_('Language')->set( CFactory::_('Config')->lang_target, CFactory::_('Config')->lang_prefix . '_' . $view['settings']->CODE . '_DESC', $view['settings']->description ); // ICOMOON <<>> CFactory::_('Content')->set_($view['settings']->code, 'ICOMOON', $view['icomoon']); // set placeholders CFactory::_('Placeholder')->set('SView', $view['settings']->Code); CFactory::_('Placeholder')->set('sview', $view['settings']->code); CFactory::_('Placeholder')->set('SVIEW', $view['settings']->CODE); CFactory::_('Placeholder')->set('SViews', $view['settings']->Code); CFactory::_('Placeholder')->set('sviews', $view['settings']->code); CFactory::_('Placeholder')->set('SVIEWS', $view['settings']->CODE); // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onBeforeBuildCustomAdminViewContent CFactory::_('Event')->trigger( 'jcb_ce_onBeforeBuildCustomAdminViewContent', array(&$component_context, &$view, &$view['settings']->code, &$fileContentStatic, &$fileContentDynamic[$view['settings']->code], &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); // set license per view if needed $this->setLockLicensePer( $view['settings']->code, CFactory::_('Config')->build_target ); // check if this custom admin view is the default view if (CFactory::_('Registry')->get('build.dashboard.type', '') === 'custom_admin_views' && CFactory::_('Registry')->get('build.dashboard', '') === $view['settings']->code) { // HIDEMAINMENU <<>> CFactory::_('Content')->set_($view['settings']->code, 'HIDEMAINMENU', ''); } else { // HIDEMAINMENU <<>> CFactory::_('Content')->set_($view['settings']->code, 'HIDEMAINMENU', PHP_EOL . Indent::_(2) . '//' . Line::_( __LINE__,__CLASS__ ) . " hide the main menu" . PHP_EOL . Indent::_(2) . "\$this->app->input->set('hidemainmenu', true);"); } if ($view['settings']->main_get->gettype == 1) { // CUSTOM_ADMIN_BEFORE_GET_ITEM <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_BEFORE_GET_ITEM', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_before_getitem', $view['settings']->code, '', null, true )); // CUSTOM_ADMIN_GET_ITEM <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_GET_ITEM', $this->setCustomViewGetItem( $view['settings']->main_get, $view['settings']->code, Indent::_(2) )); // CUSTOM_ADMIN_AFTER_GET_ITEM <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_AFTER_GET_ITEM', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_after_getitem', $view['settings']->code, '', null, true )); } elseif ($view['settings']->main_get->gettype == 2) { // CUSTOM_ADMIN_GET_LIST_QUERY <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_GET_LIST_QUERY', $this->setCustomViewListQuery( $view['settings']->main_get, $view['settings']->code )); // CUSTOM_ADMIN_CUSTOM_BEFORE_LIST_QUERY <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_CUSTOM_BEFORE_LIST_QUERY', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_getlistquery', $view['settings']->code, PHP_EOL, null, true )); // CUSTOM_ADMIN_BEFORE_GET_ITEMS <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_BEFORE_GET_ITEMS', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_before_getitems', $view['settings']->code, PHP_EOL, null, true )); // CUSTOM_ADMIN_GET_ITEMS <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_GET_ITEMS', $this->setCustomViewGetItems( $view['settings']->main_get, $view['settings']->code )); // CUSTOM_ADMIN_AFTER_GET_ITEMS <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_AFTER_GET_ITEMS', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_after_getitems', $view['settings']->code, PHP_EOL, null, true )); } // CUSTOM_ADMIN_CUSTOM_METHODS <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_CUSTOM_METHODS', $this->setCustomViewCustomItemMethods( $view['settings']->main_get, $view['settings']->code )); CFactory::_('Content')->add_($view['settings']->code, 'CUSTOM_ADMIN_CUSTOM_METHODS', $this->setCustomViewCustomMethods( $view, $view['settings']->code ) ); // CUSTOM_ADMIN_DIPLAY_METHOD <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_DIPLAY_METHOD', $this->setCustomViewDisplayMethod($view)); // set document details $this->setPrepareDocument($view); // CUSTOM_ADMIN_EXTRA_DIPLAY_METHODS <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_EXTRA_DIPLAY_METHODS', $this->setCustomViewExtraDisplayMethods($view)); // CUSTOM_ADMIN_CODE_BODY <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_CODE_BODY', $this->setCustomViewCodeBody($view)); // CUSTOM_ADMIN_BODY <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_BODY', $this->setCustomViewBody($view)); // CUSTOM_ADMIN_SUBMITBUTTON_SCRIPT <<>> CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_SUBMITBUTTON_SCRIPT', $this->setCustomViewSubmitButtonScript($view)); // setup the templates $this->setCustomViewTemplateBody($view); // set the site form if needed CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_TOP_FORM', $this->setCustomViewForm( $view['settings']->code, $view['settings']->main_get->gettype, 1 )); CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_BOTTOM_FORM', $this->setCustomViewForm( $view['settings']->code, $view['settings']->main_get->gettype, 2 )); // set headers based on the main get type if ($view['settings']->main_get->gettype == 1) { // CUSTOM_ADMIN_VIEW_CONTROLLER_HEADER <<>> add the header details for the controller CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_VIEW_CONTROLLER_HEADER', $this->setFileHeader( 'custom.admin.view.controller', $view['settings']->code )); // CUSTOM_ADMIN_VIEW_MODEL_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_VIEW_MODEL_HEADER', $this->setFileHeader( 'custom.admin.view.model', $view['settings']->code )); // CUSTOM_ADMIN_VIEW_HTML_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_VIEW_HTML_HEADER', $this->setFileHeader( 'custom.admin.view.html', $view['settings']->code )); // CUSTOM_ADMIN_VIEW_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_VIEW_HEADER', $this->setFileHeader( 'custom.admin.view', $view['settings']->code )); } elseif ($view['settings']->main_get->gettype == 2) { // CUSTOM_ADMIN_VIEWS_CONTROLLER_HEADER <<>> add the header details for the controller CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_VIEWS_CONTROLLER_HEADER', $this->setFileHeader( 'custom.admin.views.controller', $view['settings']->code )); // CUSTOM_ADMIN_VIEWS_MODEL_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_VIEWS_MODEL_HEADER', $this->setFileHeader( 'custom.admin.views.model', $view['settings']->code )); // CUSTOM_ADMIN_VIEWS_HTML_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_VIEWS_HTML_HEADER', $this->setFileHeader( 'custom.admin.views.html', $view['settings']->code )); // CUSTOM_ADMIN_VIEWS_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($view['settings']->code, 'CUSTOM_ADMIN_VIEWS_HEADER', $this->setFileHeader( 'custom.admin.views', $view['settings']->code )); } // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onAfterBuildCustomAdminViewContent CFactory::_('Event')->trigger( 'jcb_ce_onAfterBuildCustomAdminViewContent', array(&$component_context, &$view, &$view['settings']->code, &$fileContentStatic, &$fileContentDynamic[$view['settings']->code], &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); } // setup the layouts $this->setCustomViewLayouts(); } // ADMIN_HELPER_CLASS_HEADER CFactory::_('Content')->set('ADMIN_HELPER_CLASS_HEADER', $this->setFileHeader( 'admin.helper', 'admin' )); // ADMIN_COMPONENT_HEADER CFactory::_('Content')->set('ADMIN_COMPONENT_HEADER', $this->setFileHeader( 'admin.component', 'admin' )); // SITE_HELPER_CLASS_HEADER CFactory::_('Content')->set('SITE_HELPER_CLASS_HEADER', $this->setFileHeader( 'site.helper', 'site' )); // SITE_COMPONENT_HEADER CFactory::_('Content')->set('SITE_COMPONENT_HEADER', $this->setFileHeader( 'site.component', 'site' )); // HELPER_EXEL CFactory::_('Content')->set('HELPER_EXEL', $this->setHelperExelMethods()); // VIEWARRAY CFactory::_('Content')->set('VIEWARRAY', PHP_EOL . implode("," . PHP_EOL, $viewarray)); // CUSTOM_ADMIN_EDIT_VIEW_ARRAY CFactory::_('Content')->set('SITE_EDIT_VIEW_ARRAY', PHP_EOL . implode("," . PHP_EOL, $site_edit_view_array)); // MAINMENUS CFactory::_('Content')->set('MAINMENUS', $this->setMainMenus()); // SUBMENU CFactory::_('Content')->set('SUBMENU', $this->setSubMenus()); // GET_CRYPT_KEY CFactory::_('Content')->set('GET_CRYPT_KEY', $this->setGetCryptKey()); // set the license locker $this->setLockLicense(); // CONTRIBUTORS CFactory::_('Content')->set('CONTRIBUTORS', $this->theContributors); // INSTALL CFactory::_('Content')->set('INSTALL', $this->setInstall()); // UNINSTALL CFactory::_('Content')->set('UNINSTALL', $this->setUninstall()); // UPDATE_VERSION_MYSQL $this->setVersionController(); // only set these if default dashboard it used if (!CFactory::_('Registry')->get('build.dashboard')) { // DASHBOARDVIEW CFactory::_('Content')->set('DASHBOARDVIEW', CFactory::_('Config')->component_code_name); // DASHBOARDICONS CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASHBOARDICONS', $this->setDashboardIcons()); // DASHBOARDICONACCESS CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASHBOARDICONACCESS', $this->setDashboardIconAccess()); // DASH_MODEL_METHODS CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASH_MODEL_METHODS', $this->setDashboardModelMethods()); // DASH_GET_CUSTOM_DATA CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASH_GET_CUSTOM_DATA', $this->setDashboardGetCustomData()); // DASH_DISPLAY_DATA CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASH_DISPLAY_DATA', $this->setDashboardDisplayData()); // DASH_VIEW_HEADER CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASH_VIEW_HEADER', $this->setFileHeader('dashboard.view', 'dashboard')); // DASH_VIEW_HTML_HEADER CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASH_VIEW_HTML_HEADER', $this->setFileHeader('dashboard.view.html', 'dashboard')); // DASH_MODEL_HEADER CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASH_MODEL_HEADER', $this->setFileHeader('dashboard.model', 'dashboard')); // DASH_CONTROLLER_HEADER CFactory::_('Content')->set_(CFactory::_('Config')->component_code_name, 'DASH_CONTROLLER_HEADER', $this->setFileHeader('dashboard.controller', 'dashboard')); } else { // DASHBOARDVIEW CFactory::_('Content')->set('DASHBOARDVIEW', CFactory::_('Registry')->get('build.dashboard')); } // add import if (CFactory::_('Config')->get('add_eximport', false)) { // setup import files $target = array('admin' => 'import'); CFactory::_('Utilities.Structure')->build($target, 'import'); // IMPORT_EXT_METHOD <<>> CFactory::_('Content')->set_('import', 'IMPORT_EXT_METHOD', PHP_EOL . PHP_EOL . CFactory::_('Placeholder')->update_( ComponentbuilderHelper::getDynamicScripts('ext') )); // IMPORT_SETDATA_METHOD <<>> CFactory::_('Content')->set_('import', 'IMPORT_SETDATA_METHOD', PHP_EOL . PHP_EOL . CFactory::_('Placeholder')->update_( ComponentbuilderHelper::getDynamicScripts('setdata') )); // IMPORT_SAVE_METHOD <<>> CFactory::_('Content')->set_('import', 'IMPORT_SAVE_METHOD', PHP_EOL . PHP_EOL . CFactory::_('Placeholder')->update_( ComponentbuilderHelper::getDynamicScripts('save') )); // IMPORT_CONTROLLER_HEADER <<>> add the header details for the controller CFactory::_('Content')->set_('import', 'IMPORT_CONTROLLER_HEADER', $this->setFileHeader( 'import.controller', 'import' )); // IMPORT_MODEL_HEADER <<>> add the header details for the model CFactory::_('Content')->set_('import', 'IMPORT_MODEL_HEADER', $this->setFileHeader( 'import.model', 'import' )); } // ensure that the ajax model and controller is set if needed if (CFactory::_('Config')->get('add_ajax', false)) { // setup Ajax files $target = array('admin' => 'ajax'); CFactory::_('Utilities.Structure')->build($target, 'ajax'); // set the controller CFactory::_('Content')->set_('ajax', 'REGISTER_AJAX_TASK', $this->setRegisterAjaxTask('admin')); CFactory::_('Content')->set_('ajax', 'AJAX_INPUT_RETURN', $this->setAjaxInputReturn('admin')); // set the model header CFactory::_('Content')->set_('ajax', 'AJAX_ADMIN_MODEL_HEADER', $this->setFileHeader('ajax.admin.model', 'ajax')); // set the module CFactory::_('Content')->set_('ajax', 'AJAX_MODEL_METHODS', $this->setAjaxModelMethods('admin')); } // ensure that the site ajax model and controller is set if needed if (CFactory::_('Config')->get('add_site_ajax', false)) { // setup Ajax files $target = array('site' => 'ajax'); CFactory::_('Utilities.Structure')->build($target, 'ajax'); // set the controller CFactory::_('Content')->set_('ajax', 'REGISTER_SITE_AJAX_TASK', $this->setRegisterAjaxTask('site')); CFactory::_('Content')->set_('ajax', 'AJAX_SITE_INPUT_RETURN', $this->setAjaxInputReturn('site')); // set the model header CFactory::_('Content')->set_('ajax', 'AJAX_SITE_MODEL_HEADER', $this->setFileHeader('ajax.site.model', 'ajax')); // set the module CFactory::_('Content')->set_('ajax', 'AJAX_SITE_MODEL_METHODS', $this->setAjaxModelMethods('site')); } // build the validation rules if (($validationRules = CFactory::_('Registry')->_('validation.rules')) !== null) { foreach ($validationRules as $rule => $_php) { // setup rule file $target = array('admin' => 'a_rule_zi'); CFactory::_('Utilities.Structure')->build($target, 'rule', $rule); // set the JFormRule Name CFactory::_('Content')->set_('a_rule_zi_' . $rule, 'Name', ucfirst((string) $rule)); // set the JFormRule PHP CFactory::_('Content')->set_('a_rule_zi_' . $rule, 'VALIDATION_RULE_METHODS', PHP_EOL . $_php); } } // run the second run if needed if (isset($this->secondRunAdmin) && ArrayHelper::check($this->secondRunAdmin)) { // start dynamic build foreach ($this->secondRunAdmin as $function => $arrays) { if (ArrayHelper::check($arrays) && StringHelper::check($function)) { foreach ($arrays as $array) { $this->{$function}($array); } } } } // CONFIG_FIELDSETS $keepLang = CFactory::_('Config')->lang_target; CFactory::_('Config')->lang_target = 'admin'; // run field sets for second time $this->setConfigFieldsets(2); CFactory::_('Config')->lang_target = $keepLang; // setup front-views and all needed stuff for the site if (CFactory::_('Component')->isArray('site_views')) { CFactory::_('Config')->build_target = 'site'; // start dynamic build foreach (CFactory::_('Component')->get('site_views') as $view) { // for list views CFactory::_('Content')->set_($view['settings']->code, 'SViews', $view['settings']->Code); CFactory::_('Content')->set_($view['settings']->code, 'sviews', $view['settings']->code); // for single views CFactory::_('Content')->set_($view['settings']->code, 'SView', $view['settings']->Code); CFactory::_('Content')->set_($view['settings']->code, 'sview', $view['settings']->code); // set placeholders CFactory::_('Placeholder')->set('SView', $view['settings']->Code); CFactory::_('Placeholder')->set('sview', $view['settings']->code); CFactory::_('Placeholder')->set('SVIEW', $view['settings']->CODE); CFactory::_('Placeholder')->set('SViews', $view['settings']->Code); CFactory::_('Placeholder')->set('sviews', $view['settings']->code); CFactory::_('Placeholder')->set('SVIEWS', $view['settings']->CODE); // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onBeforeBuildSiteViewContent CFactory::_('Event')->trigger( 'jcb_ce_onBeforeBuildSiteViewContent', array(&$component_context, &$view, &$view['settings']->code, &$fileContentStatic, &$fileContentDynamic[$view['settings']->code], &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); // set license per view if needed $this->setLockLicensePer( $view['settings']->code, CFactory::_('Config')->build_target ); // set the site default view if (isset($view['default_view']) && $view['default_view'] == 1) { CFactory::_('Content')->set('SITE_DEFAULT_VIEW', $view['settings']->code); } // add site menu if (isset($view['menu']) && $view['menu'] == 1) { // SITE_MENU_XML <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_MENU_XML', $this->setCustomViewMenu($view)); } // insure the needed route helper is loaded CFactory::_('Content')->add('ROUTEHELPER', $this->setRouterHelp( $view['settings']->code, $view['settings']->code, true )); // build route details CFactory::_('Content')->add('ROUTER_PARSE_SWITCH', $this->routerParseSwitch( $view['settings']->code, $view )); CFactory::_('Content')->add('ROUTER_BUILD_VIEWS', $this->routerBuildViews($view['settings']->code)); if ($view['settings']->main_get->gettype == 1) { // set user permission access check USER_PERMISSION_CHECK_ACCESS <<>> CFactory::_('Content')->set_($view['settings']->code, 'USER_PERMISSION_CHECK_ACCESS', $this->setUserPermissionCheckAccess($view, 1)); // SITE_BEFORE_GET_ITEM <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_BEFORE_GET_ITEM', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_before_getitem', $view['settings']->code, '', null, true )); // SITE_GET_ITEM <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_GET_ITEM', $this->setCustomViewGetItem( $view['settings']->main_get, $view['settings']->code, Indent::_(2) )); // SITE_AFTER_GET_ITEM <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_AFTER_GET_ITEM', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_after_getitem', $view['settings']->code, '', null, true )); } elseif ($view['settings']->main_get->gettype == 2) { // set user permission access check USER_PERMISSION_CHECK_ACCESS <<>> CFactory::_('Content')->set_($view['settings']->code, 'USER_PERMISSION_CHECK_ACCESS', $this->setUserPermissionCheckAccess($view, 2)); // SITE_GET_LIST_QUERY <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_GET_LIST_QUERY', $this->setCustomViewListQuery( $view['settings']->main_get, $view['settings']->code )); // SITE_BEFORE_GET_ITEMS <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_BEFORE_GET_ITEMS', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_before_getitems', $view['settings']->code, PHP_EOL, null, true )); // SITE_GET_ITEMS <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_GET_ITEMS', $this->setCustomViewGetItems( $view['settings']->main_get, $view['settings']->code )); // SITE_AFTER_GET_ITEMS <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_AFTER_GET_ITEMS', CFactory::_('Customcode.Dispenser')->get( CFactory::_('Config')->build_target . '_php_after_getitems', $view['settings']->code, PHP_EOL, null, true )); } // add to lang array CFactory::_('Language')->set( 'site', CFactory::_('Config')->lang_prefix . '_' . $view['settings']->CODE, $view['settings']->name ); CFactory::_('Language')->set( 'site', CFactory::_('Config')->lang_prefix . '_' . $view['settings']->CODE . '_DESC', $view['settings']->description ); // SITE_CUSTOM_METHODS <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_CUSTOM_METHODS', $this->setCustomViewCustomItemMethods( $view['settings']->main_get, $view['settings']->code )); CFactory::_('Content')->add_($view['settings']->code, 'SITE_CUSTOM_METHODS', $this->setCustomViewCustomMethods( $view, $view['settings']->code ) ); // SITE_DIPLAY_METHOD <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_DIPLAY_METHOD', $this->setCustomViewDisplayMethod($view)); // set document details $this->setPrepareDocument($view); // SITE_EXTRA_DIPLAY_METHODS <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_EXTRA_DIPLAY_METHODS', $this->setCustomViewExtraDisplayMethods($view)); // SITE_CODE_BODY <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_CODE_BODY', $this->setCustomViewCodeBody($view)); // SITE_BODY <<>> CFactory::_('Content')->set_($view['settings']->code, 'SITE_BODY', $this->setCustomViewBody($view)); // setup the templates $this->setCustomViewTemplateBody($view); // set the site form if needed CFactory::_('Content')->set_($view['settings']->code, 'SITE_TOP_FORM', $this->setCustomViewForm( $view['settings']->code, $view['settings']->main_get->gettype, 1 )); CFactory::_('Content')->set_($view['settings']->code, 'SITE_BOTTOM_FORM', $this->setCustomViewForm( $view['settings']->code, $view['settings']->main_get->gettype, 2 )); // set headers based on the main get type if ($view['settings']->main_get->gettype == 1) { // insure the controller headers are added if (StringHelper::check( $view['settings']->php_controller ) && $view['settings']->php_controller != '//') { // SITE_VIEW_CONTROLLER_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($view['settings']->code, 'SITE_VIEW_CONTROLLER_HEADER', $this->setFileHeader( 'site.view.controller', $view['settings']->code )); } // SITE_VIEW_MODEL_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($view['settings']->code, 'SITE_VIEW_MODEL_HEADER', $this->setFileHeader( 'site.view.model', $view['settings']->code )); // SITE_VIEW_HTML_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($view['settings']->code, 'SITE_VIEW_HTML_HEADER', $this->setFileHeader( 'site.view.html', $view['settings']->code )); // SITE_VIEW_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($view['settings']->code, 'SITE_VIEW_HEADER', $this->setFileHeader( 'site.view', $view['settings']->code )); } elseif ($view['settings']->main_get->gettype == 2) { // insure the controller headers are added if (StringHelper::check( $view['settings']->php_controller ) && $view['settings']->php_controller != '//') { // SITE_VIEW_CONTROLLER_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($view['settings']->code, 'SITE_VIEW_CONTROLLER_HEADER', $this->setFileHeader( 'site.views.controller', $view['settings']->code )); } // SITE_VIEWS_MODEL_HEADER <<>> add the header details for the model CFactory::_('Content')->set_($view['settings']->code, 'SITE_VIEWS_MODEL_HEADER', $this->setFileHeader( 'site.views.model', $view['settings']->code )); // SITE_VIEWS_HTML_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($view['settings']->code, 'SITE_VIEWS_HTML_HEADER', $this->setFileHeader( 'site.views.html', $view['settings']->code )); // SITE_VIEWS_HEADER <<>> add the header details for the view CFactory::_('Content')->set_($view['settings']->code, 'SITE_VIEWS_HEADER', $this->setFileHeader( 'site.views', $view['settings']->code )); } // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onAfterBuildSiteViewContent CFactory::_('Event')->trigger( 'jcb_ce_onAfterBuildSiteViewContent', array(&$component_context, &$view, &$view['settings']->code, &$fileContentStatic, &$fileContentDynamic[$view['settings']->code], &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); } // setup the layouts $this->setCustomViewLayouts(); } else { // clear all site folder since none is needed CFactory::_('Config')->remove_site_folder = true; } // load the site statics if (!CFactory::_('Config')->remove_site_folder || !CFactory::_('Config')->remove_site_edit_folder) { CFactory::_('Config')->build_target = 'site'; // if no default site view was set, the redirect to root if (!CFactory::_('Content')->exist('SITE_DEFAULT_VIEW')) { CFactory::_('Content')->set('SITE_DEFAULT_VIEW', ''); } // set site custom script to helper class // SITE_CUSTOM_HELPER_SCRIPT CFactory::_('Content')->set('SITE_CUSTOM_HELPER_SCRIPT', CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_php_helper_site'] )); // SITE_GLOBAL_EVENT_HELPER if (!CFactory::_('Content')->exist('SITE_GLOBAL_EVENT')) { CFactory::_('Content')->set('SITE_GLOBAL_EVENT', ''); } if (!CFactory::_('Content')->exist('SITE_GLOBAL_EVENT_HELPER')) { CFactory::_('Content')->set('SITE_GLOBAL_EVENT_HELPER', ''); } // now load the data for the global event if needed if (CFactory::_('Component')->get('add_site_event', 0) == 1) { CFactory::_('Content')->add('SITE_GLOBAL_EVENT', PHP_EOL . PHP_EOL . '// Trigger the Global Site Event'); CFactory::_('Content')->add('SITE_GLOBAL_EVENT', PHP_EOL . CFactory::_('Content')->get('Component') . 'Helper::globalEvent($document);'); // SITE_GLOBAL_EVENT_HELPER CFactory::_('Content')->add('SITE_GLOBAL_EVENT_HELPER', PHP_EOL . PHP_EOL . Indent::_(1) . '/**'); CFactory::_('Content')->add('SITE_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . '* The Global Site Event Method.'); CFactory::_('Content')->add('SITE_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . '**/'); CFactory::_('Content')->add('SITE_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . 'public static function globalEvent($document)'); CFactory::_('Content')->add('SITE_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . '{'); CFactory::_('Content')->add('SITE_GLOBAL_EVENT_HELPER', PHP_EOL . CFactory::_('Placeholder')->update_( CFactory::_('Customcode.Dispenser')->hub['component_php_site_event'] )); CFactory::_('Content')->add('SITE_GLOBAL_EVENT_HELPER', PHP_EOL . Indent::_(1) . '}'); } } // PREINSTALLSCRIPT CFactory::_('Content')->add('PREINSTALLSCRIPT', CFactory::_('Customcode.Dispenser')->get( 'php_preflight', 'install', PHP_EOL, null, true )); // PREUPDATESCRIPT CFactory::_('Content')->add('PREUPDATESCRIPT', CFactory::_('Customcode.Dispenser')->get( 'php_preflight', 'update', PHP_EOL, null, true )); // POSTINSTALLSCRIPT CFactory::_('Content')->add('POSTINSTALLSCRIPT', $this->setPostInstallScript()); // POSTUPDATESCRIPT CFactory::_('Content')->add('POSTUPDATESCRIPT', $this->setPostUpdateScript()); // UNINSTALLSCRIPT CFactory::_('Content')->add('UNINSTALLSCRIPT', $this->setUninstallScript()); // MOVEFOLDERSSCRIPT CFactory::_('Content')->set('MOVEFOLDERSSCRIPT', $this->setMoveFolderScript()); // MOVEFOLDERSMETHOD CFactory::_('Content')->set('MOVEFOLDERSMETHOD', $this->setMoveFolderMethod()); // HELPER_UIKIT CFactory::_('Content')->set('HELPER_UIKIT', $this->setUikitHelperMethods()); // CONFIG_FIELDSETS CFactory::_('Content')->set('CONFIG_FIELDSETS', implode(PHP_EOL, $this->configFieldSets)); // check if this has been set if (!CFactory::_('Content')->exist('ROUTER_BUILD_VIEWS') || !StringHelper::check( CFactory::_('Content')->get('ROUTER_BUILD_VIEWS') )) { CFactory::_('Content')->set('ROUTER_BUILD_VIEWS', 0); } else { CFactory::_('Content')->set('ROUTER_BUILD_VIEWS', '(' . CFactory::_('Content')->get('ROUTER_BUILD_VIEWS') . ')'); } // README if (CFactory::_('Component')->get('addreadme')) { CFactory::_('Content')->set('README', CFactory::_('Component')->get('readme')); } // CHANGELOG if (($changelog = CFactory::_('Component')->get('changelog')) !== null) { CFactory::_('Content')->set('CHANGELOG', $changelog); } // Infuse POWERS CFactory::_('Power.Infusion')->set(); // tweak system to set stuff to the module domain $_backup_target = CFactory::_('Config')->build_target; $_backup_lang = CFactory::_('Config')->lang_target; $_backup_langPrefix = CFactory::_('Config')->lang_prefix; // infuse module data if set if (CFactory::_('Joomlamodule.Data')->exists()) { foreach (CFactory::_('Joomlamodule.Data')->get() as $module) { if (ObjectHelper::check($module)) { // Trigger Event: jcb_ce_onBeforeInfuseModuleData CFactory::_('Event')->trigger( 'jcb_ce_onBeforeInfuseModuleData', array(&$component_context, &$module, &$this) ); CFactory::_('Config')->build_target = $module->key; CFactory::_('Config')->lang_target = $module->key; $this->langPrefix = $module->lang_prefix; CFactory::_('Config')->set('lang_prefix', $module->lang_prefix); // MODCODE CFactory::_('Content')->set_($module->key, 'MODCODE', $this->getModCode($module)); // DYNAMICGET CFactory::_('Content')->set_($module->key, 'DYNAMICGETS', $this->setCustomViewCustomMethods( $module, $module->key )); // HELPERCODE if ($module->add_class_helper >= 1) { CFactory::_('Content')->set_($module->key, 'HELPERCODE', $this->getModHelperCode($module)); } // MODDEFAULT CFactory::_('Content')->set_($module->key, 'MODDEFAULT', $this->getModDefault($module, $module->key)); // only add install script if needed if ($module->add_install_script) { // INSTALLCLASS CFactory::_('Content')->set_($module->key, 'INSTALLCLASS', CFactory::_('Extension.InstallScript')->get($module)); } // FIELDSET if (isset($module->form_files) && ArrayHelper::check( $module->form_files )) { foreach ($module->form_files as $file => $files) { foreach ($files as $field_name => $fieldsets) { foreach ($fieldsets as $fieldset => $fields) { // FIELDSET_ . $file.$field_name.$fieldset CFactory::_('Content')->set_($module->key, 'FIELDSET_' . $file . $field_name . $fieldset, $this->getExtensionFieldsetXML( $module, $fields ) ); } } } } // MAINXML CFactory::_('Content')->set_($module->key, 'MAINXML', $this->getModuleMainXML($module)); // Trigger Event: jcb_ce_onAfterInfuseModuleData CFactory::_('Event')->trigger( 'jcb_ce_onAfterInfuseModuleData', array(&$component_context, &$module, &$this) ); } } } // infuse plugin data if set if (CFactory::_('Joomlaplugin.Data')->exists()) { foreach (CFactory::_('Joomlaplugin.Data')->get() as $plugin) { if (ObjectHelper::check($plugin)) { // Trigger Event: jcb_ce_onBeforeInfusePluginData CFactory::_('Event')->trigger( 'jcb_ce_onBeforeInfusePluginData', array(&$component_context, &$plugin, &$this) ); CFactory::_('Config')->build_target = $plugin->key; CFactory::_('Config')->lang_target = $plugin->key; $this->langPrefix = $plugin->lang_prefix; CFactory::_('Config')->set('lang_prefix', $plugin->lang_prefix); // MAINCLASS CFactory::_('Content')->set_($plugin->key, 'MAINCLASS', $this->getPluginMainClass($plugin)); // only add install script if needed if ($plugin->add_install_script) { // INSTALLCLASS CFactory::_('Content')->set_($plugin->key, 'INSTALLCLASS', CFactory::_('Extension.InstallScript')->get($plugin)); } // FIELDSET if (isset($plugin->form_files) && ArrayHelper::check( $plugin->form_files )) { foreach ($plugin->form_files as $file => $files) { foreach ($files as $field_name => $fieldsets) { foreach ($fieldsets as $fieldset => $fields) { // FIELDSET_ . $file.$field_name.$fieldset CFactory::_('Content')->set_($plugin->key, 'FIELDSET_' . $file . $field_name . $fieldset, $this->getExtensionFieldsetXML( $plugin, $fields ) ); } } } } // MAINXML CFactory::_('Content')->set_($plugin->key, 'MAINXML', $this->getPluginMainXML($plugin)); // Trigger Event: jcb_ce_onAfterInfusePluginData CFactory::_('Event')->trigger( 'jcb_ce_onAfterInfusePluginData', array(&$component_context, &$plugin, &$this) ); } } } // rest globals CFactory::_('Config')->build_target = $_backup_target; CFactory::_('Config')->lang_target = $_backup_lang; $this->langPrefix = $_backup_langPrefix; CFactory::_('Config')->set('lang_prefix', $_backup_langPrefix); // for plugin event TODO change event api signatures $placeholders = CFactory::_('Placeholder')->active; $fileContentStatic = CFactory::_('Content')->active; $fileContentDynamic = CFactory::_('Content')->_active; // Trigger Event: jcb_ce_onAfterBuildFilesContent CFactory::_('Event')->trigger( 'jcb_ce_onAfterBuildFilesContent', array(&$component_context, &$this->componentData, &$fileContentStatic, &$fileContentDynamic, &$placeholders, &$this->hhh) ); unset($fileContentStatic); unset($fileContentDynamic); unset($placeholders); return true; } return false; } /** * Set the view place holders to global scope * * @param object $view The view settings * * @ return void */ protected function setViewPlaceholders(&$view) { // just to be safe, lets clear previous view placeholders CFactory::_('Placeholder')->clearType('view'); CFactory::_('Placeholder')->clearType('views'); // VIEW <<>> if (isset($view->name_single) && $view->name_single != 'null') { // set main keys $nameSingleCode = $view->name_single_code; $name_single_uppercase = StringHelper::safe( $view->name_single, 'U' ); $name_single_first_uppercase = StringHelper::safe( $view->name_single, 'F' ); // set some place holder for the views CFactory::_('Placeholder')->set('view', $nameSingleCode); CFactory::_('Placeholder')->set('View', $name_single_first_uppercase); CFactory::_('Placeholder')->set('VIEW', $name_single_uppercase); } // VIEWS <<>> if (isset($view->name_list) && $view->name_list != 'null') { $nameListCode = $view->name_list_code; $name_list_uppercase = StringHelper::safe( $view->name_list, 'U' ); $name_list_first_uppercase = StringHelper::safe( $view->name_list, 'F' ); // set some place holder for the views CFactory::_('Placeholder')->set('views', $nameListCode); CFactory::_('Placeholder')->set('Views', $name_list_first_uppercase); CFactory::_('Placeholder')->set('VIEWS', $name_list_uppercase); } // view <<>> if (isset($nameSingleCode)) { CFactory::_('Content')->set_($nameSingleCode, 'view', $nameSingleCode); CFactory::_('Content')->set_($nameSingleCode, 'VIEW', $name_single_uppercase); CFactory::_('Content')->set_($nameSingleCode, 'View', $name_single_first_uppercase); if (isset($nameListCode)) { CFactory::_('Content')->set_($nameListCode, 'view', $nameSingleCode); CFactory::_('Content')->set_($nameListCode, 'VIEW', $name_single_uppercase); CFactory::_('Content')->set_($nameListCode, 'View', $name_single_first_uppercase); } } // views <<>> if (isset($nameListCode)) { CFactory::_('Content')->set_($nameListCode, 'views', $nameListCode); CFactory::_('Content')->set_($nameListCode, 'VIEWS', $name_list_uppercase); CFactory::_('Content')->set_($nameListCode, 'Views', $name_list_first_uppercase); if (isset($nameSingleCode)) { CFactory::_('Content')->set_($nameSingleCode, 'views', $nameListCode); CFactory::_('Content')->set_($nameSingleCode, 'VIEWS', $name_list_uppercase); CFactory::_('Content')->set_($nameSingleCode, 'Views', $name_list_first_uppercase); } } } /** * Build the language values and insert into file * * @return boolean on success * */ public function setLangFileData() { // reset values $values = array(); $mainLangLoader = array(); // check the admin lang is set if ($this->setLangAdmin()) { $values[] = array_values( $this->languages['components'][CFactory::_('Config')->get('lang_tag', 'en-GB')]['admin'] ); $mainLangLoader['admin'] = count( $this->languages['components'][CFactory::_('Config')->get('lang_tag', 'en-GB')]['admin'] ); } // check the admin system lang is set if ($this->setLangAdminSys()) { $values[] = array_values( $this->languages['components'][CFactory::_('Config')->get('lang_tag', 'en-GB')]['adminsys'] ); $mainLangLoader['adminsys'] = count( $this->languages['components'][CFactory::_('Config')->get('lang_tag', 'en-GB')]['adminsys'] ); } // check the site lang is set if ((!CFactory::_('Config')->remove_site_folder || !CFactory::_('Config')->remove_site_edit_folder) && $this->setLangSite()) { $values[] = array_values( $this->languages['components'][CFactory::_('Config')->get('lang_tag', 'en-GB')]['site'] ); $mainLangLoader['site'] = count( $this->languages['components'][CFactory::_('Config')->get('lang_tag', 'en-GB')]['site'] ); } // check the site system lang is set if ((!CFactory::_('Config')->remove_site_folder || !CFactory::_('Config')->remove_site_edit_folder) && $this->setLangSiteSys()) { $values[] = array_values( $this->languages['components'][CFactory::_('Config')->get('lang_tag', 'en-GB')]['sitesys'] ); $mainLangLoader['sitesys'] = count( $this->languages['components'][CFactory::_('Config')->get('lang_tag', 'en-GB')]['sitesys'] ); } $values = array_unique(ArrayHelper::merge($values)); // get the other lang strings if there is any $this->multiLangString = $this->getMultiLangStrings($values); // update insert the current lang in to DB $this->setLangPlaceholders($values, CFactory::_('Config')->component_id); // remove old unused language strings $this->purgeLanuageStrings($values, CFactory::_('Config')->component_id); // path to INI file $getPAth = CFactory::_('Utilities.Paths')->template_path . '/en-GB.com_admin.ini'; // for plugin event TODO change event api signatures $component_context = CFactory::_('Config')->component_context; // Trigger Event: jcb_ce_onBeforeBuildAllLangFiles CFactory::_('Event')->trigger( 'jcb_ce_onBeforeBuildAllLangFiles', array(&$component_context, &$this->languages['components'], &$this->langTag) ); // for plugin event TODO change event api signatures CFactory::_('Config')->lang_tag = $this->langTag; // now we insert the values into the files if (ArrayHelper::check($this->languages['components'])) { // rest xml array $langXML = array(); foreach ($this->languages['components'] as $tag => $areas) { // trim the tag $tag = trim((string) $tag); foreach ($areas as $area => $languageStrings) { // set naming convention $p = 'admin'; $t = ''; if (strpos((string) $area, 'site') !== false) { if (CFactory::_('Config')->remove_site_folder && CFactory::_('Config')->remove_site_edit_folder) { continue; } $p = 'site'; } if (strpos((string) $area, 'sys') !== false) { $t = '.sys'; } // build the file name $file_name = $tag . '.com_' . CFactory::_('Config')->component_code_name . $t . '.ini'; // check if language should be added if ($this->shouldLanguageBeAdded( $tag, $languageStrings, $mainLangLoader[$area], $file_name )) { // build the path to place the lang file $path = CFactory::_('Utilities.Paths')->component_path . '/' . $p . '/language/' . $tag . '/'; if (!Folder::exists($path)) { Folder::create($path); // count the folder created CFactory::_('Utilities.Counter')->folder++; } // move the file to its place File::copy($getPAth, $path . $file_name); // count the file created CFactory::_('Utilities.Counter')->file++; // add content to it $lang = array_map( fn($langstring, $placeholder) => $placeholder . '="' . $langstring . '"', array_values($languageStrings), array_keys($languageStrings) ); // add to language file CFactory::_('Utilities.File')->write( $path . $file_name, implode(PHP_EOL, $lang) ); // set the line counter CFactory::_('Utilities.Counter')->line += count( (array) $lang ); unset($lang); // build xml strings if (!isset($langXML[$p])) { $langXML[$p] = array(); } $langXML[$p][] = 'language/' . $tag . '/' . $file_name . ''; } } } // load the lang xml if (ArrayHelper::check($langXML)) { $replace = array(); if (isset($langXML['admin']) && ArrayHelper::check($langXML['admin'])) { $replace[Placefix::_h('ADMIN_LANGUAGES')] = implode(PHP_EOL . Indent::_(3), $langXML['admin']); } if ((!CFactory::_('Config')->remove_site_folder || !CFactory::_('Config')->remove_site_edit_folder) && isset($langXML['site']) && ArrayHelper::check($langXML['site'])) { $replace[Placefix::_h('SITE_LANGUAGES')] = implode(PHP_EOL . Indent::_(2), $langXML['site']); } // build xml path $xmlPath = CFactory::_('Utilities.Paths')->component_path . '/' . CFactory::_('Config')->component_code_name . '.xml'; // get the content in xml $componentXML = FileHelper::getContent( $xmlPath ); // update the xml content $componentXML = CFactory::_('Placeholder')->update($componentXML, $replace); // store the values back to xml CFactory::_('Utilities.File')->write($xmlPath, $componentXML); } } } }