/** reset limits
  * reset limits of this class: age limit, from limit, interval limit, order limit and all limits from upper class
  */
 function resetLimits()
 {
     parent::resetLimits();
     $this->_from_limit = NULL;
     $this->_interval_limit = NULL;
     $this->_order = NULL;
     $this->_template_limit = NULL;
 }
 /** reset limits
  * reset limits of this class: local limits and all limits from upper class
  */
 public function resetLimits()
 {
     parent::resetLimits();
     $this->_age_limit = NULL;
     $this->_user_id_limit = NULL;
     $this->_time_limit = NULL;
     $this->_project_room_limit = NULL;
 }
Exemple #3
0
 /** reset limits
  * reset limits of this class: age limit, from limit, interval limit, order limit and all limits from upper class
  */
 function resetLimits()
 {
     parent::resetLimits();
     $this->_age_limit = NULL;
     $this->_from_limit = NULL;
     $this->_interval_limit = NULL;
     $this->_user_id_limit = NULL;
     $this->_community_room_limit = NULL;
     $this->_time_limit = NULL;
     $this->_template_limit = NULL;
 }
 /** reset limits
  * reset limits of this class: age limit, from limit, interval limit, order limit and all limits from upper class
  */
 function resetLimits()
 {
     parent::resetLimits();
     $this->_from_limit = NULL;
     $this->_interval_limit = NULL;
     $this->_order = NULL;
     $this->_time_limit = NULL;
     $this->_user_id_limit = NULL;
     $this->_room_type = CS_PRIVATEROOM_TYPE;
     $this->_template_limit = NULL;
     $this->_active_limit = false;
 }