Moved the MVC to extend the CMS MVC via namespace.
This commit is contained in:
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Admin_custom_tabs Model
|
||||
* Componentbuilder Admin_custom_tabs Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmin_custom_tabs extends JModelAdmin
|
||||
class ComponentbuilderModelAdmin_custom_tabs extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Admin_fields Model
|
||||
* Componentbuilder Admin_fields Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmin_fields extends JModelAdmin
|
||||
class ComponentbuilderModelAdmin_fields extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Admin_fields_conditions Model
|
||||
* Componentbuilder Admin_fields_conditions Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmin_fields_conditions extends JModelAdmin
|
||||
class ComponentbuilderModelAdmin_fields_conditions extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Admin_fields_relations Model
|
||||
* Componentbuilder Admin_fields_relations Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmin_fields_relations extends JModelAdmin
|
||||
class ComponentbuilderModelAdmin_fields_relations extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Admin_view Model
|
||||
* Componentbuilder Admin_view Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmin_view extends JModelAdmin
|
||||
class ComponentbuilderModelAdmin_view extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Admin_views Model
|
||||
* Admin_views List Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmin_views extends JModelList
|
||||
class ComponentbuilderModelAdmin_views extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Admins_custom_tabs Model
|
||||
* Admins_custom_tabs List Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmins_custom_tabs extends JModelList
|
||||
class ComponentbuilderModelAdmins_custom_tabs extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Admins_fields Model
|
||||
* Admins_fields List Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmins_fields extends JModelList
|
||||
class ComponentbuilderModelAdmins_fields extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Admins_fields_conditions Model
|
||||
* Admins_fields_conditions List Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmins_fields_conditions extends JModelList
|
||||
class ComponentbuilderModelAdmins_fields_conditions extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Admins_fields_relations Model
|
||||
* Admins_fields_relations List Model
|
||||
*/
|
||||
class ComponentbuilderModelAdmins_fields_relations extends JModelList
|
||||
class ComponentbuilderModelAdmins_fields_relations extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Ajax Model
|
||||
* Componentbuilder Ajax List Model
|
||||
*/
|
||||
class ComponentbuilderModelAjax extends JModelList
|
||||
class ComponentbuilderModelAjax extends ListModel
|
||||
{
|
||||
protected $app_params;
|
||||
|
||||
@ -1086,11 +1087,11 @@ class ComponentbuilderModelAjax extends JModelList
|
||||
array('table' => 'component_plugins', 'tables' => 'components_plugins', 'fields' => array('addjoomla_plugins' => 'plugin', 'joomla_component' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_JOOMLA_COMPONENT', 'linked_name' => 'system_name')
|
||||
),
|
||||
'power' => array(
|
||||
array('table' => 'admin_view', 'tables' => 'admin_views', 'fields' => array('params' => 'admin_view_headers:power_', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_ADMIN_VIEW'),
|
||||
array('table' => 'site_view', 'tables' => 'site_views', 'fields' => array('params' => 'site_view_headers:power_', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_SITE_VIEW'),
|
||||
array('table' => 'custom_admin_view', 'tables' => 'custom_admin_views', 'fields' => array('params' => 'custom_admin_view_headers:power_', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW'),
|
||||
array('table' => 'joomla_component', 'tables' => 'joomla_components', 'fields' => array('params' => 'joomla_component_headers:power_', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_JOOMLA_COMPONENT'),
|
||||
array('table' => 'component_dashboard', 'tables' => 'components_dashboard', 'fields' => array('params' => 'component_dashboard_headers:power_', 'joomla_component' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_COMPONENT_DASHBOARD', 'linked_name' => 'system_name'),
|
||||
array('table' => 'admin_view', 'tables' => 'admin_views', 'fields' => array('params' => 'admin_view_headers:power_:power', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_ADMIN_VIEW'),
|
||||
array('table' => 'site_view', 'tables' => 'site_views', 'fields' => array('params' => 'site_view_headers:power_:power', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_SITE_VIEW'),
|
||||
array('table' => 'custom_admin_view', 'tables' => 'custom_admin_views', 'fields' => array('params' => 'custom_admin_view_headers:power_:power', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW'),
|
||||
array('table' => 'joomla_component', 'tables' => 'joomla_components', 'fields' => array('params' => 'joomla_component_headers:power_:power', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_JOOMLA_COMPONENT'),
|
||||
array('table' => 'component_dashboard', 'tables' => 'components_dashboard', 'fields' => array('params' => 'component_dashboard_headers:power_:power', 'joomla_component' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_COMPONENT_DASHBOARD', 'linked_name' => 'system_name'),
|
||||
array('table' => 'power', 'tables' => 'powers', 'fields' => array('extends' => 'GUID', 'implements' => 'ARRAY', 'use_selection' => 'use', 'load_selection' => 'load', 'system_name' => 'NAME'), 'linked' => 'COM_COMPONENTBUILDER_POWER')
|
||||
)
|
||||
);
|
||||
@ -1277,9 +1278,9 @@ class ComponentbuilderModelAjax extends JModelList
|
||||
{
|
||||
if (!$found && $field_name === $_target[0])
|
||||
{
|
||||
foreach ($row as $key => $_ids)
|
||||
foreach ($row as $_key => $_ids)
|
||||
{
|
||||
if (!$found && strpos($key, $_target[1]) !== false && (in_array($id, $_ids) || $this->linkedGuid($guid, $_ids)))
|
||||
if (!$found && strpos($_key, $_target[1]) !== false && (in_array($id, $_ids) || $this->linkedGuid($guid, $_ids)))
|
||||
{
|
||||
$found = true;
|
||||
}
|
||||
@ -1287,6 +1288,29 @@ class ComponentbuilderModelAjax extends JModelList
|
||||
}
|
||||
}
|
||||
}
|
||||
// check that we have an array and get the size
|
||||
if (($_size = ComponentbuilderHelper::checkArray($_target)) == 3)
|
||||
{
|
||||
foreach ($item->{$key} as $field_name => $row)
|
||||
{
|
||||
if (!$found && $field_name === $_target[0])
|
||||
{
|
||||
foreach ($row as $_key => $_items)
|
||||
{
|
||||
if (!$found && strpos($_key, $_target[1]) !== false && is_array($_items) && count($_items) > 0)
|
||||
{
|
||||
foreach ($_items as $_item)
|
||||
{
|
||||
if (!$found && isset($_item[$_target[2]]) && ($id == $_item[$_target[2]] || $this->linkedGuid($guid, $_item[$_target[2]])))
|
||||
{
|
||||
$found = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Class_extendings Model
|
||||
* Class_extendings List Model
|
||||
*/
|
||||
class ComponentbuilderModelClass_extendings extends JModelList
|
||||
class ComponentbuilderModelClass_extendings extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Class_extends Model
|
||||
* Componentbuilder Class_extends Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelClass_extends extends JModelAdmin
|
||||
class ComponentbuilderModelClass_extends extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Class_method Model
|
||||
* Componentbuilder Class_method Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelClass_method extends JModelAdmin
|
||||
class ComponentbuilderModelClass_method extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Class_methods Model
|
||||
* Class_methods List Model
|
||||
*/
|
||||
class ComponentbuilderModelClass_methods extends JModelList
|
||||
class ComponentbuilderModelClass_methods extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Class_properties Model
|
||||
* Class_properties List Model
|
||||
*/
|
||||
class ComponentbuilderModelClass_properties extends JModelList
|
||||
class ComponentbuilderModelClass_properties extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Class_property Model
|
||||
* Componentbuilder Class_property Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelClass_property extends JModelAdmin
|
||||
class ComponentbuilderModelClass_property extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Model for Compiler
|
||||
* Componentbuilder List Model for Compiler
|
||||
*/
|
||||
class ComponentbuilderModelCompiler extends JModelList
|
||||
class ComponentbuilderModelCompiler extends ListModel
|
||||
{
|
||||
/**
|
||||
* Model user data.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_admin_views Model
|
||||
* Componentbuilder Component_admin_views Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_admin_views extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_admin_views extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_config Model
|
||||
* Componentbuilder Component_config Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_config extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_config extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_custom_admin_menus Model
|
||||
* Componentbuilder Component_custom_admin_menus Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_custom_admin_menus extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_custom_admin_menus extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_custom_admin_views Model
|
||||
* Componentbuilder Component_custom_admin_views Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_custom_admin_views extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_custom_admin_views extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_dashboard Model
|
||||
* Componentbuilder Component_dashboard Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_dashboard extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_dashboard extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_files_folders Model
|
||||
* Componentbuilder Component_files_folders Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_files_folders extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_files_folders extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_modules Model
|
||||
* Componentbuilder Component_modules Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_modules extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_modules extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_mysql_tweaks Model
|
||||
* Componentbuilder Component_mysql_tweaks Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_mysql_tweaks extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_mysql_tweaks extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_placeholders Model
|
||||
* Componentbuilder Component_placeholders Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_placeholders extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_placeholders extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_plugins Model
|
||||
* Componentbuilder Component_plugins Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_plugins extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_plugins extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_site_views Model
|
||||
* Componentbuilder Component_site_views Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_site_views extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_site_views extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Component_updates Model
|
||||
* Componentbuilder Component_updates Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelComponent_updates extends JModelAdmin
|
||||
class ComponentbuilderModelComponent_updates extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Model
|
||||
* Componentbuilder List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponentbuilder extends JModelList
|
||||
class ComponentbuilderModelComponentbuilder extends ListModel
|
||||
{
|
||||
public function getIcons()
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_admin_views Model
|
||||
* Components_admin_views List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_admin_views extends JModelList
|
||||
class ComponentbuilderModelComponents_admin_views extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_config Model
|
||||
* Components_config List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_config extends JModelList
|
||||
class ComponentbuilderModelComponents_config extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_custom_admin_menus Model
|
||||
* Components_custom_admin_menus List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_custom_admin_menus extends JModelList
|
||||
class ComponentbuilderModelComponents_custom_admin_menus extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_custom_admin_views Model
|
||||
* Components_custom_admin_views List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_custom_admin_views extends JModelList
|
||||
class ComponentbuilderModelComponents_custom_admin_views extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_dashboard Model
|
||||
* Components_dashboard List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_dashboard extends JModelList
|
||||
class ComponentbuilderModelComponents_dashboard extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_files_folders Model
|
||||
* Components_files_folders List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_files_folders extends JModelList
|
||||
class ComponentbuilderModelComponents_files_folders extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_modules Model
|
||||
* Components_modules List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_modules extends JModelList
|
||||
class ComponentbuilderModelComponents_modules extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_mysql_tweaks Model
|
||||
* Components_mysql_tweaks List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_mysql_tweaks extends JModelList
|
||||
class ComponentbuilderModelComponents_mysql_tweaks extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_placeholders Model
|
||||
* Components_placeholders List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_placeholders extends JModelList
|
||||
class ComponentbuilderModelComponents_placeholders extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_plugins Model
|
||||
* Components_plugins List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_plugins extends JModelList
|
||||
class ComponentbuilderModelComponents_plugins extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_site_views Model
|
||||
* Components_site_views List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_site_views extends JModelList
|
||||
class ComponentbuilderModelComponents_site_views extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Components_updates Model
|
||||
* Components_updates List Model
|
||||
*/
|
||||
class ComponentbuilderModelComponents_updates extends JModelList
|
||||
class ComponentbuilderModelComponents_updates extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Custom_admin_view Model
|
||||
* Componentbuilder Custom_admin_view Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelCustom_admin_view extends JModelAdmin
|
||||
class ComponentbuilderModelCustom_admin_view extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Custom_admin_views Model
|
||||
* Custom_admin_views List Model
|
||||
*/
|
||||
class ComponentbuilderModelCustom_admin_views extends JModelList
|
||||
class ComponentbuilderModelCustom_admin_views extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Custom_code Model
|
||||
* Componentbuilder Custom_code Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelCustom_code extends JModelAdmin
|
||||
class ComponentbuilderModelCustom_code extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Custom_codes Model
|
||||
* Custom_codes List Model
|
||||
*/
|
||||
class ComponentbuilderModelCustom_codes extends JModelList
|
||||
class ComponentbuilderModelCustom_codes extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Dynamic_get Model
|
||||
* Componentbuilder Dynamic_get Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelDynamic_get extends JModelAdmin
|
||||
class ComponentbuilderModelDynamic_get extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Dynamic_gets Model
|
||||
* Dynamic_gets List Model
|
||||
*/
|
||||
class ComponentbuilderModelDynamic_gets extends JModelList
|
||||
class ComponentbuilderModelDynamic_gets extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Field Model
|
||||
* Componentbuilder Field Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelField extends JModelAdmin
|
||||
class ComponentbuilderModelField extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Fields Model
|
||||
* Fields List Model
|
||||
*/
|
||||
class ComponentbuilderModelFields extends JModelList
|
||||
class ComponentbuilderModelFields extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Fieldtype Model
|
||||
* Componentbuilder Fieldtype Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelFieldtype extends JModelAdmin
|
||||
class ComponentbuilderModelFieldtype extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Fieldtypes Model
|
||||
* Fieldtypes List Model
|
||||
*/
|
||||
class ComponentbuilderModelFieldtypes extends JModelList
|
||||
class ComponentbuilderModelFieldtypes extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Model for Get_snippets
|
||||
* Componentbuilder List Model for Get_snippets
|
||||
*/
|
||||
class ComponentbuilderModelGet_snippets extends JModelList
|
||||
class ComponentbuilderModelGet_snippets extends ListModel
|
||||
{
|
||||
/**
|
||||
* Model user data.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Help_document Model
|
||||
* Componentbuilder Help_document Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelHelp_document extends JModelAdmin
|
||||
class ComponentbuilderModelHelp_document extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Help_documents Model
|
||||
* Help_documents List Model
|
||||
*/
|
||||
class ComponentbuilderModelHelp_documents extends JModelList
|
||||
class ComponentbuilderModelHelp_documents extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,15 +13,16 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\BaseDatabaseModel;
|
||||
use Joomla\CMS\Filesystem\File;
|
||||
use Joomla\CMS\Filesystem\Folder;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use PhpOffice\PhpSpreadsheet\IOFactory;
|
||||
|
||||
/**
|
||||
* Componentbuilder Import Model
|
||||
* Componentbuilder Import Base Database Model
|
||||
*/
|
||||
class ComponentbuilderModelImport extends JModelLegacy
|
||||
class ComponentbuilderModelImport extends BaseDatabaseModel
|
||||
{
|
||||
// set uploading values
|
||||
protected $use_streams = false;
|
||||
|
@ -13,15 +13,16 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\BaseDatabaseModel;
|
||||
use Joomla\CMS\Filesystem\File;
|
||||
use Joomla\CMS\Filesystem\Folder;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use PhpOffice\PhpSpreadsheet\IOFactory;
|
||||
|
||||
/**
|
||||
* Componentbuilder Import_joomla_components Model
|
||||
* Componentbuilder Import_joomla_components Base Database Model
|
||||
*/
|
||||
class ComponentbuilderModelImport_joomla_components extends JModelLegacy
|
||||
class ComponentbuilderModelImport_joomla_components extends BaseDatabaseModel
|
||||
{
|
||||
// set uploading values
|
||||
protected $use_streams = false;
|
||||
|
@ -13,15 +13,16 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\BaseDatabaseModel;
|
||||
use Joomla\CMS\Filesystem\File;
|
||||
use Joomla\CMS\Filesystem\Folder;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use PhpOffice\PhpSpreadsheet\IOFactory;
|
||||
|
||||
/**
|
||||
* Componentbuilder Import_language_translations Model
|
||||
* Componentbuilder Import_language_translations Base Database Model
|
||||
*/
|
||||
class ComponentbuilderModelImport_language_translations extends JModelLegacy
|
||||
class ComponentbuilderModelImport_language_translations extends BaseDatabaseModel
|
||||
{
|
||||
// set uploading values
|
||||
protected $use_streams = false;
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Joomla_component Model
|
||||
* Componentbuilder Joomla_component Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_component extends JModelAdmin
|
||||
class ComponentbuilderModelJoomla_component extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Joomla_components Model
|
||||
* Joomla_components List Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_components extends JModelList
|
||||
class ComponentbuilderModelJoomla_components extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
@ -662,7 +663,10 @@ class ComponentbuilderModelJoomla_components extends JModelList
|
||||
{
|
||||
foreach ($val as $v)
|
||||
{
|
||||
$bucket[$v] = $v;
|
||||
if (ComponentbuilderHelper::checkArray($v) && isset($v['power']))
|
||||
{
|
||||
$bucket[$v['power']] = $v['power'];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Joomla_module Model
|
||||
* Componentbuilder Joomla_module Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_module extends JModelAdmin
|
||||
class ComponentbuilderModelJoomla_module extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Joomla_module_files_folders_urls Model
|
||||
* Componentbuilder Joomla_module_files_folders_urls Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_module_files_folders_urls extends JModelAdmin
|
||||
class ComponentbuilderModelJoomla_module_files_folders_urls extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Joomla_module_updates Model
|
||||
* Componentbuilder Joomla_module_updates Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_module_updates extends JModelAdmin
|
||||
class ComponentbuilderModelJoomla_module_updates extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Joomla_modules Model
|
||||
* Joomla_modules List Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_modules extends JModelList
|
||||
class ComponentbuilderModelJoomla_modules extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Joomla_modules_files_folders_urls Model
|
||||
* Joomla_modules_files_folders_urls List Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_modules_files_folders_urls extends JModelList
|
||||
class ComponentbuilderModelJoomla_modules_files_folders_urls extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Joomla_modules_updates Model
|
||||
* Joomla_modules_updates List Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_modules_updates extends JModelList
|
||||
class ComponentbuilderModelJoomla_modules_updates extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Joomla_plugin Model
|
||||
* Componentbuilder Joomla_plugin Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_plugin extends JModelAdmin
|
||||
class ComponentbuilderModelJoomla_plugin extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Joomla_plugin_files_folders_urls Model
|
||||
* Componentbuilder Joomla_plugin_files_folders_urls Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_plugin_files_folders_urls extends JModelAdmin
|
||||
class ComponentbuilderModelJoomla_plugin_files_folders_urls extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Joomla_plugin_group Model
|
||||
* Componentbuilder Joomla_plugin_group Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_plugin_group extends JModelAdmin
|
||||
class ComponentbuilderModelJoomla_plugin_group extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Joomla_plugin_groups Model
|
||||
* Joomla_plugin_groups List Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_plugin_groups extends JModelList
|
||||
class ComponentbuilderModelJoomla_plugin_groups extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Joomla_plugin_updates Model
|
||||
* Componentbuilder Joomla_plugin_updates Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_plugin_updates extends JModelAdmin
|
||||
class ComponentbuilderModelJoomla_plugin_updates extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Joomla_plugins Model
|
||||
* Joomla_plugins List Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_plugins extends JModelList
|
||||
class ComponentbuilderModelJoomla_plugins extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Joomla_plugins_files_folders_urls Model
|
||||
* Joomla_plugins_files_folders_urls List Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_plugins_files_folders_urls extends JModelList
|
||||
class ComponentbuilderModelJoomla_plugins_files_folders_urls extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Joomla_plugins_updates Model
|
||||
* Joomla_plugins_updates List Model
|
||||
*/
|
||||
class ComponentbuilderModelJoomla_plugins_updates extends JModelList
|
||||
class ComponentbuilderModelJoomla_plugins_updates extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Language Model
|
||||
* Componentbuilder Language Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelLanguage extends JModelAdmin
|
||||
class ComponentbuilderModelLanguage extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Language_translation Model
|
||||
* Componentbuilder Language_translation Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelLanguage_translation extends JModelAdmin
|
||||
class ComponentbuilderModelLanguage_translation extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Language_translations Model
|
||||
* Language_translations List Model
|
||||
*/
|
||||
class ComponentbuilderModelLanguage_translations extends JModelList
|
||||
class ComponentbuilderModelLanguage_translations extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Languages Model
|
||||
* Languages List Model
|
||||
*/
|
||||
class ComponentbuilderModelLanguages extends JModelList
|
||||
class ComponentbuilderModelLanguages extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Layout Model
|
||||
* Componentbuilder Layout Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelLayout extends JModelAdmin
|
||||
class ComponentbuilderModelLayout extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Layouts Model
|
||||
* Layouts List Model
|
||||
*/
|
||||
class ComponentbuilderModelLayouts extends JModelList
|
||||
class ComponentbuilderModelLayouts extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Libraries Model
|
||||
* Libraries List Model
|
||||
*/
|
||||
class ComponentbuilderModelLibraries extends JModelList
|
||||
class ComponentbuilderModelLibraries extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Libraries_config Model
|
||||
* Libraries_config List Model
|
||||
*/
|
||||
class ComponentbuilderModelLibraries_config extends JModelList
|
||||
class ComponentbuilderModelLibraries_config extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Libraries_files_folders_urls Model
|
||||
* Libraries_files_folders_urls List Model
|
||||
*/
|
||||
class ComponentbuilderModelLibraries_files_folders_urls extends JModelList
|
||||
class ComponentbuilderModelLibraries_files_folders_urls extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Library Model
|
||||
* Componentbuilder Library Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelLibrary extends JModelAdmin
|
||||
class ComponentbuilderModelLibrary extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Library_config Model
|
||||
* Componentbuilder Library_config Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelLibrary_config extends JModelAdmin
|
||||
class ComponentbuilderModelLibrary_config extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Library_files_folders_urls Model
|
||||
* Componentbuilder Library_files_folders_urls Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelLibrary_files_folders_urls extends JModelAdmin
|
||||
class ComponentbuilderModelLibrary_files_folders_urls extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Placeholder Model
|
||||
* Componentbuilder Placeholder Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelPlaceholder extends JModelAdmin
|
||||
class ComponentbuilderModelPlaceholder extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Placeholders Model
|
||||
* Placeholders List Model
|
||||
*/
|
||||
class ComponentbuilderModelPlaceholders extends JModelList
|
||||
class ComponentbuilderModelPlaceholders extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Server Model
|
||||
* Componentbuilder Server Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelServer extends JModelAdmin
|
||||
class ComponentbuilderModelServer extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Servers Model
|
||||
* Servers List Model
|
||||
*/
|
||||
class ComponentbuilderModelServers extends JModelList
|
||||
class ComponentbuilderModelServers extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Site_view Model
|
||||
* Componentbuilder Site_view Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelSite_view extends JModelAdmin
|
||||
class ComponentbuilderModelSite_view extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Site_views Model
|
||||
* Site_views List Model
|
||||
*/
|
||||
class ComponentbuilderModelSite_views extends JModelList
|
||||
class ComponentbuilderModelSite_views extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Snippet Model
|
||||
* Componentbuilder Snippet Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelSnippet extends JModelAdmin
|
||||
class ComponentbuilderModelSnippet extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Snippet_type Model
|
||||
* Componentbuilder Snippet_type Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelSnippet_type extends JModelAdmin
|
||||
class ComponentbuilderModelSnippet_type extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Snippet_types Model
|
||||
* Snippet_types List Model
|
||||
*/
|
||||
class ComponentbuilderModelSnippet_types extends JModelList
|
||||
class ComponentbuilderModelSnippet_types extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Snippets Model
|
||||
* Snippets List Model
|
||||
*/
|
||||
class ComponentbuilderModelSnippets extends JModelList
|
||||
class ComponentbuilderModelSnippets extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Template Model
|
||||
* Componentbuilder Template Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelTemplate extends JModelAdmin
|
||||
class ComponentbuilderModelTemplate extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
@ -13,12 +13,13 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Templates Model
|
||||
* Templates List Model
|
||||
*/
|
||||
class ComponentbuilderModelTemplates extends JModelList
|
||||
class ComponentbuilderModelTemplates extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
||||
|
@ -13,14 +13,15 @@
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\AdminModel;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* Componentbuilder Validation_rule Model
|
||||
* Componentbuilder Validation_rule Admin Model
|
||||
*/
|
||||
class ComponentbuilderModelValidation_rule extends JModelAdmin
|
||||
class ComponentbuilderModelValidation_rule extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user