FuelPHP Bin
Sign in
Url:
Fork
<?php class Model_Building extends \Orm\Model { protected static $_properties = array( 'id', 'title', 'text', 'type', 'category', 'position', 'image_id', 'created_at', 'created_by', 'updated_at', 'updated_by', ); protected static $_conditions = array( 'order_by' => array('position' => 'asc'), ); protected static $_belongs_to = array( 'image' => array( 'key_from' => 'image_id', 'model_to' => 'Model_Image', 'key_to' => 'id', 'cascade_save' => true, 'cascade_delete' => false, ) ); protected static $_has_many = array( 'levelplans' => array( 'key_from' => 'id', // key in this model 'model_to' => 'Model_Levelplan',// related model 'key_to' => 'building_id', // key in the related model 'cascade_save' => true, // update the related table on save 'cascade_delete' => false, // delete the related data when deleting the parent ) ); protected static $_eav = array( 'levelplans' => array( // we use the statistics relation to store the EAV data 'model_to' => 'Model_Levelplan', 'attribute' => 'key', // the key column in the related table contains the attribute 'value' => 'value', // the value column in the related table contains the value ) ); protected static $_observers = array( 'Orm\Observer_CreatedAt' => array( 'events' => array('before_insert'), 'mysql_timestamp' => false, ), 'Observer_CreatedBy' => array( 'events' => array('before_insert'), 'mysql_timestamp' => false, ), 'Orm\Observer_UpdatedAt' => array( 'events' => array('before_save'), 'mysql_timestamp' => false, ), 'Observer_UpdatedBy' => array( 'events' => array('before_save'), 'mysql_timestamp' => false, ), 'Observer_LevelId' => array( 'events' => array('before_save'), 'mysql_timestamp' => false, ), ); public static function validate($factory) { $val = Validation::forge($factory); $val->add_field('title', 'Titel', 'required|max_length[255]'); return $val; }