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',
|
2013-05-02 16:24:46 +00:00
|
|
|
'description' => 'This sample extension demonstrate the use of various hooks',
|
2013-05-03 09:31:43 +00:00
|
|
|
'disable' => false,
|
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',
|
|
|
|
),
|
|
|
|
),
|
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
|
|
|
);
|
|
|
|
?>
|