add onBeforeBuildAccessSections & onAfterBuildAccessSections events to compiler of JCB.

This commit is contained in:
Llewellyn van der Merwe 2019-08-26 19:30:22 +02:00
parent 9fcc5c3930
commit 40d867e602
No known key found for this signature in database
GPG Key ID: CAD7B16D27AF28C5
5 changed files with 14 additions and 12 deletions

View File

@ -150,10 +150,10 @@ TODO
+ *Version*: 2.10.0
+ *Copyright*: Copyright (C) 2015 - 2019 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
+ *Line count*: **247882**
+ *Line count*: **247734**
+ *Field count*: **1343**
+ *File count*: **1608**
+ *Folder count*: **253**
+ *File count*: **1604**
+ *Folder count*: **250**
> This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](http://joomlacomponentbuilder.com).
> Developed by [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)

View File

@ -150,10 +150,10 @@ TODO
+ *Version*: 2.10.0
+ *Copyright*: Copyright (C) 2015 - 2019 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
+ *Line count*: **247882**
+ *Line count*: **247734**
+ *Field count*: **1343**
+ *File count*: **1608**
+ *Folder count*: **253**
+ *File count*: **1604**
+ *Folder count*: **250**
> This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](http://joomlacomponentbuilder.com).
> Developed by [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)

View File

@ -15703,7 +15703,11 @@ function vdm_dkim() {
$this->componentGlobal = array();
$this->permissionViews = array();
// Trigger Event: jcb_ce_onBeforeBuildAccessSections
$this->triggerEvent('jcb_ce_onBeforeBuildAccessSections', array(&$this->componentContext, $this));
$this->componentHead[] = '<section name="component">';
$this->componentHead[] = $this->_t(2) . '<action name="core.admin" title="JACTION_ADMIN" description="JACTION_ADMIN_COMPONENT_DESC" />';
$this->componentHead[] = $this->_t(2) . '<action name="core.options" title="JACTION_OPTIONS" description="JACTION_OPTIONS_COMPONENT_DESC" />';
$this->componentHead[] = $this->_t(2) . '<action name="core.manage" title="JACTION_MANAGE" description="JACTION_MANAGE_COMPONENT_DESC" />';
@ -15938,6 +15942,10 @@ function vdm_dkim() {
$this->buildPermissions($view, $nameView, $nameViews, $menuControllers);
}
}
// Trigger Event: jcb_ce_onAfterBuildAccessSections
$this->triggerEvent('jcb_ce_onAfterBuildAccessSections', array(&$this->componentContext, $this));
// set the views permissions now
if (ComponentbuilderHelper::checkArray($this->permissionViews))
{

View File

@ -5215,9 +5215,6 @@ abstract class ComponentbuilderHelper
&& ($timestamp <= PHP_INT_MAX)
&& ($timestamp >= ~PHP_INT_MAX);
}
// Privacy integration with Joomla Privacy suite
/**
* Load the Component xml manifest.

View File

@ -5215,9 +5215,6 @@ abstract class ComponentbuilderHelper
&& ($timestamp <= PHP_INT_MAX)
&& ($timestamp >= ~PHP_INT_MAX);
}
// Privacy integration with Joomla Privacy suite
public static function jsonToString($value, $sperator = ", ", $table = null, $id = 'id', $name = 'name')