52
0
plg_content_componentbuilde.../componentbuilderfieldorderingtabs.php

60 lines
1.5 KiB
PHP
Raw Normal View History

2021-10-14 14:30:52 +00:00
<?php
2021-12-16 13:15:01 +00:00
/**
* @package Joomla.Component.Builder
*
* @created 30th April, 2015
* @author Llewellyn van der Merwe <https://dev.vdm.io>
2022-08-20 16:38:51 +00:00
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
2021-12-16 13:15:01 +00:00
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
2021-10-14 14:30:52 +00:00
*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Form\Form;
use Joomla\CMS\Plugin\CMSPlugin;
/**
* Content - Componentbuilder Field Ordering Tabs plugin.
*
* @package ComponentbuilderFieldOrderingTabs
2024-03-11 14:14:23 +00:00
* @since 2.0.0
2021-10-14 14:30:52 +00:00
*/
class PlgContentComponentbuilderFieldOrderingTabs extends CMSPlugin
{
/**
2024-03-11 14:14:23 +00:00
* Affects constructor behaviour. If true, language files will be loaded automatically.
2021-10-14 14:30:52 +00:00
*
* @var boolean
* @since 1.0
*/
protected $autoloadLanguage = true;
/**
* Runs on content preparation of form.
*
* @param JForm $form The form
* @param stdClass $data The data
*
* @return boolean
*
* @since 1.0
*/
public function onContentPrepareForm(Form $form, $data)
{
$context = $form->getName();
// When this is componentbuilder admin view
if (strpos($context, 'com_componentbuilder.admin_view') === 0)
{
// Add the forms path
Form::addFormPath(__DIR__ . '/forms');
// add the admin view params for privacy integration
$form->loadFile('admin_view');
}
2024-03-11 14:14:23 +00:00
2021-10-14 14:30:52 +00:00
return true;
}
}