add sample configuration

This commit is contained in:
Uwe Steinmann 2013-05-02 22:33:59 +02:00
parent e46fc9d024
commit b091c7f861

View File

@ -4,6 +4,17 @@ $EXT_CONF['example'] = array(
'description' => 'This sample extension demonstrate the use of various hooks', 'description' => 'This sample extension demonstrate the use of various hooks',
'version' => '1.0.0', 'version' => '1.0.0',
'author' => array('name'=>'Uwe Steinmann', 'email'=>'uwe@steinmann.cx', 'company'=>'MMK GmbH'), 'author' => array('name'=>'Uwe Steinmann', 'email'=>'uwe@steinmann.cx', 'company'=>'MMK GmbH'),
'config' => array(
'input_field' => array(
'title'=>'Example input field',
'type'=>'input',
'size'=>20,
),
'checkbox' => array(
'title'=>'Example check box',
'type'=>'checkbox',
),
),
'constraints' => array( 'constraints' => array(
'depends' => array('php' => '5.4.4-', 'seeddms' => '4.2.0-'), 'depends' => array('php' => '5.4.4-', 'seeddms' => '4.2.0-'),
), ),