initial commit
[namibia] / module / Company / src / Company / DataBin / FoundMethod.php
1 <?php
2 namespace Company\DataBin;
3
4
5
6 /**
7  * Manage FoundMethod data.
8  * @author andre.fourie
9  */
10 class FoundMethod extends \Workspace\Service\DataBin
11 {
12
13         /**
14          * @var array
15          */
16         protected $meta = array(
17                         'Base'        => 'FoundMethod',
18                         'DatasetName' => 'foundmethods',
19                         'Entity'      => '\Company\Entity\FoundMethod',
20                         'References'  => array(),
21                         'Dependants'  => array()
22         );
23         /**
24          * @var array
25         */
26         protected $metaSelectList = array(
27                         'Type'          => 'SelectList',
28                         'Contract'      => 'Recurring',
29                         'RequiredInput' => array(),
30                         'OptionalInput' => array(),
31                         'Filter'   => array(),
32                         'Label'    => array(
33                                 'Format' => '[name]',
34                                 'Fields' => array('name')
35                         )
36         );
37
38 }