Planning.class.php 416 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Define a planning.
  4. * @author Julien NARBONI
  5. * @category Plugin
  6. * @license copyright
  7. */
  8. class Planning extends Entity{
  9. public $id,$owner,$type,$label,$slug,$color,$default;
  10. protected $TABLE_NAME = 'planning';
  11. public $fields =
  12. array(
  13. 'id' => 'key',
  14. 'label' => 'string',
  15. 'slug' => 'string',
  16. 'color' => 'string',
  17. 'owner' => 'string',
  18. 'default' => 'int',
  19. 'type' => 'string'
  20. );
  21. }
  22. ?>