2013-04-17 09:01:03 +00:00
|
|
|
<?php
|
2013-04-18 20:18:46 +00:00
|
|
|
$EXT_CONF['example'] = array(
|
2013-04-17 09:01:03 +00:00
|
|
|
'title' => 'Example Extension',
|
2016-04-12 07:17:35 +00:00
|
|
|
'description' => 'This sample extension demonstrates the use of various hooks',
|
2015-06-01 06:39:44 +00:00
|
|
|
'disable' => true,
|
2013-04-17 09:01:03 +00:00
|
|
|
'version' => '1.0.0',
|
2013-05-03 07:51:36 +00:00
|
|
|
'releasedate' => '2013-05-03',
|
2013-04-17 09:01:03 +00:00
|
|
|
'author' => array('name'=>'Uwe Steinmann', 'email'=>'uwe@steinmann.cx', 'company'=>'MMK GmbH'),
|
2013-05-02 20:33:59 +00:00
|
|
|
'config' => array(
|
|
|
|
'input_field' => array(
|
|
|
|
'title'=>'Example input field',
|
|
|
|
'type'=>'input',
|
|
|
|
'size'=>20,
|
|
|
|
),
|
|
|
|
'checkbox' => array(
|
|
|
|
'title'=>'Example check box',
|
|
|
|
'type'=>'checkbox',
|
|
|
|
),
|
2017-04-20 07:58:09 +00:00
|
|
|
'list' => array(
|
|
|
|
'title'=>'Example select menu from options',
|
|
|
|
'type'=>'select',
|
|
|
|
'options' => array('Option 1', 'Option 2', 'Option 3'),
|
|
|
|
'multiple' => true,
|
|
|
|
'size' => 2,
|
|
|
|
),
|
|
|
|
'categories' => array(
|
|
|
|
'title'=>'Example select menu from categories',
|
|
|
|
'type'=>'select',
|
|
|
|
'internal'=>'categories',
|
|
|
|
'multiple' => true,
|
|
|
|
),
|
|
|
|
'users' => array(
|
|
|
|
'title'=>'Example select menu from users',
|
|
|
|
'type'=>'select',
|
|
|
|
'internal'=>'users',
|
|
|
|
'multiple' => true,
|
|
|
|
),
|
2017-04-21 15:20:16 +00:00
|
|
|
'groups' => array(
|
|
|
|
'title'=>'Example select menu from groups',
|
|
|
|
'type'=>'select',
|
|
|
|
'internal'=>'groups',
|
|
|
|
'multiple' => true,
|
|
|
|
),
|
|
|
|
'attributedefinitions' => array(
|
|
|
|
'title'=>'Example select menu from attribute definitions',
|
|
|
|
'type'=>'select',
|
|
|
|
'internal'=>'attributedefinitions',
|
|
|
|
'multiple' => true,
|
|
|
|
),
|
2013-05-02 20:33:59 +00:00
|
|
|
),
|
2013-04-17 09:01:03 +00:00
|
|
|
'constraints' => array(
|
2013-05-28 05:30:45 +00:00
|
|
|
'depends' => array('php' => '5.4.4-', 'seeddms' => '4.3.0-'),
|
2013-04-17 09:01:03 +00:00
|
|
|
),
|
2013-05-03 07:51:36 +00:00
|
|
|
'icon' => 'icon.png',
|
2013-04-18 20:18:46 +00:00
|
|
|
'class' => array(
|
|
|
|
'file' => 'class.example.php',
|
2013-05-02 10:12:03 +00:00
|
|
|
'name' => 'SeedDMS_ExtExample'
|
2013-04-18 20:18:46 +00:00
|
|
|
),
|
2013-08-15 18:36:54 +00:00
|
|
|
'language' => array(
|
|
|
|
'file' => 'lang.php',
|
|
|
|
),
|
2013-04-17 09:01:03 +00:00
|
|
|
);
|
|
|
|
?>
|