Dashboard.class.php 362 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Define a dashboard.
  4. * @author Idleman
  5. * @category Plugin
  6. * @license copyright
  7. */
  8. class Dashboard extends Entity{
  9. public $id,$user,$label,$icon,$default;
  10. protected $TABLE_NAME = 'dashboard_dashboard';
  11. public $fields =
  12. array(
  13. 'id' => 'key',
  14. 'user' => 'string',
  15. 'label' => 'string',
  16. 'icon' => 'string',
  17. 'default' => 'boolean'
  18. );
  19. }
  20. ?>