seeddms-code/ext/example/conf.php

65 lines
1.6 KiB
PHP
Raw Normal View History

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',
2021-09-27 13:56:33 +00:00
'disable' => true,
2018-03-21 13:26:19 +00:00
'version' => '1.0.1',
'releasedate' => '2018-03-21',
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',
),
'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,
),
'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(
2020-04-03 16:16:50 +00:00
'depends' => array('php' => '5.6.40-', 'seeddms' => '5.1.0-'),
2013-04-17 09:01:03 +00:00
),
2020-09-14 11:10:01 +00:00
'icon' => 'icon.svg',
2018-03-16 09:49:57 +00:00
'changelog' => 'changelog.md',
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
);
?>