1234567891011121314151617181920 |
- <?php
- /**
- * Define a dashboard.
- * @author Idleman
- * @category Plugin
- * @license copyright
- */
- class Dashboard extends Entity{
- public $id,$user,$label,$icon,$default;
- protected $TABLE_NAME = 'dashboard_dashboard';
- public $fields =
- array(
- 'id' => 'key',
- 'user' => 'string',
- 'label' => 'string',
- 'icon' => 'string',
- 'default' => 'boolean'
- );
- }
- ?>
|