/discount/ranee-bronirovanie
MODPATH/orm/classes/Kohana/ORM.php [ 687 ]
682
683 return $model->where($col, '=', $val);
684 }
685 else
686 {
687 throw new Kohana_Exception('The :property property does not exist in the :class class',
688 array(':property' => $column, ':class' => get_class($this)));
689 }
690 }
691
692 /**
- MODPATH/orm/classes/Kohana/ORM.php [ 603 ]» Kohana_ORM->get(arguments)0string(10) "tours_name"598 * @param string $column Column name 599 * @return mixed 600 */ 601 public function __get($column) 602 { 603 return $this->get($column); 604 } 605 606 /** 607 * Handles getting of column 608 * Override this method to add custom get behavior
- MODPATH/ariol/classes/Extasy/Orm.php [ 238 ]» Kohana_ORM->__get(arguments)0string(10) "tours_name"233 if(isset($this->_has_many_to_save[$key])) 234 { 235 return $this->_has_many_to_save[$key]; 236 } 237 } 238 return parent::__get($key); 239 } 240 241 public function __set($key, $value) 242 { 243 if(array_key_exists($key, $this->_has_many))
- MODPATH/ariol/classes/Extasy/Orm.php [ 382 ]» Extasy_Orm->__get(arguments)0string(10) "tours_name"377 return Arr::path($this->_render_options, $key.'.'.$value, $value); 378 } 379 380 public function offsetGet($offset) 381 { 382 return $this->__get($offset); 383 } 384 385 public function offsetSet($offset, $value) 386 { 387 return $this->__set($offset, $value);
- APPPATH/views/site/discount/item.php [ 11 ]» Extasy_Orm->offsetGet(arguments)0string(10) "tours_name"6