Planning.class.php 445 B

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