1 | <?php |
||
24 | class DataSetFactory |
||
25 | { |
||
26 | /** |
||
27 | * Obtain the \Data\DataSet given the name of the dataset used in the settings |
||
28 | * |
||
29 | * @param string $setName The name of the DataSet used in the Settings |
||
30 | * |
||
31 | * @return \Data\DataSet The DataSet specified |
||
32 | */ |
||
33 | public static function getDataSetByName($setName) |
||
51 | |||
52 | /** |
||
53 | * Obtain the \Data\DataTable given the name of the dataset used in the settings and the name of the table |
||
54 | * |
||
55 | * @param string $dataSetName The name of the DataSet used in the Settings |
||
56 | * @param string $dataTableName The name of the DataTable |
||
57 | * |
||
58 | * @return \Data\DataTable The DataTable specified |
||
59 | */ |
||
60 | public static function getDataTableByNames($dataSetName, $dataTableName) |
||
65 | } |
||
66 | /* vim: set tabstop=4 shiftwidth=4 expandtab: */ |
||
67 |