Dashboard.class.php 408 B

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