Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. //this class represents each object on the page
  3. class PageObject extends DataObject{
  4. static $db = array(
  5. 'ObjectID'=>'int(20)',
  6. 'ObjectType'=>'Varchar(50)'
  7. );
  8. static $has_many =array(
  9. 'ObjectSetting'=>'ObjectSettings'
  10. );
  11. }
Add Comment
Please, Sign In to add comment