mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-07 15:44:58 +00:00
17 lines
472 B
PHP
17 lines
472 B
PHP
<?php
|
|
$EXT_CONF['example'] = array(
|
|
'title' => 'Example Extension',
|
|
'description' => 'This sample extension demonstrate the use of various hooks',
|
|
'version' => '1.0.0',
|
|
'author' => array('name'=>'Uwe Steinmann', 'email'=>'uwe@steinmann.cx', 'company'=>'MMK GmbH'),
|
|
'constraints' => array(
|
|
'depends' => array('php' => '5.4.4-', 'seeddms' => '4.2.0-'),
|
|
),
|
|
'icon' => '',
|
|
'class' => array(
|
|
'file' => 'class.example.php',
|
|
'name' => 'SeedDMS_ExtExample'
|
|
),
|
|
);
|
|
?>
|