Added context to all compiler events. Added layout fields override options for dynamic field generation.

This commit is contained in:
2019-07-01 18:10:28 +02:00
parent 663f8405e5
commit b9c758b800
291 changed files with 4951 additions and 370 deletions

View File

@ -18,13 +18,50 @@ use Joomla\Registry\Registry;
* Componentbuilder Snippet Model
*/
class ComponentbuilderModelSnippet extends JModelAdmin
{
{
/**
* The tab layout fields array.
*
* @var array
*/
protected $tabLayoutFields = array(
'details' => array(
'left' => array(
'type',
'heading',
'description',
'usage'
),
'right' => array(
'snippet'
),
'above' => array(
'name',
'url',
'library'
)
),
'contributor' => array(
'left' => array(
'contributor_company',
'contributor_website'
),
'right' => array(
'contributor_name',
'contributor_email'
),
'fullwidth' => array(
'note_contributor_details'
)
)
);
/**
* @var string The prefix to use with controller messages.
* @since 1.6
*/
protected $text_prefix = 'COM_COMPONENTBUILDER';
/**
* The type alias for this content type.
*