Added context to all compiler events. Added layout fields override options for dynamic field generation.
This commit is contained in:
@ -18,13 +18,45 @@ use Joomla\Registry\Registry;
|
||||
* Componentbuilder Help_document Model
|
||||
*/
|
||||
class ComponentbuilderModelHelp_document extends JModelAdmin
|
||||
{
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $tabLayoutFields = array(
|
||||
'details' => array(
|
||||
'left' => array(
|
||||
'target',
|
||||
'groups',
|
||||
'location',
|
||||
'admin_view',
|
||||
'site_view'
|
||||
),
|
||||
'right' => array(
|
||||
'type',
|
||||
'url',
|
||||
'article'
|
||||
),
|
||||
'fullwidth' => array(
|
||||
'content'
|
||||
),
|
||||
'above' => array(
|
||||
'title',
|
||||
'alias'
|
||||
),
|
||||
'under' => array(
|
||||
'not_required'
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
/**
|
||||
* @var string The prefix to use with controller messages.
|
||||
* @since 1.6
|
||||
*/
|
||||
protected $text_prefix = 'COM_COMPONENTBUILDER';
|
||||
|
||||
|
||||
/**
|
||||
* The type alias for this content type.
|
||||
*
|
||||
|
Reference in New Issue
Block a user