@@ 132-134 (lines=3) @@ | ||
129 | // EEH_Debug_Tools::printr( $fieldValues, '$fieldValues <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
|
130 | // verify client code has not passed any invalid field names |
|
131 | foreach($fieldValues as $field_name=> $field_value){ |
|
132 | if( ! isset( $model_fields[ $field_name] ) ){ |
|
133 | throw new EE_Error(sprintf(__("Invalid field (%s) passed to constructor of %s. Allowed fields are :%s", "event_espresso"),$field_name,get_class($this),implode(", ",array_keys($model_fields)))); |
|
134 | } |
|
135 | } |
|
136 | // EEH_Debug_Tools::printr( $model_fields, '$model_fields <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
|
137 | $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string( $timezone ); |
@@ 3834-3843 (lines=10) @@ | ||
3831 | */ |
|
3832 | public function related_settings_for($relation_name){ |
|
3833 | $relatedModels=$this->relation_settings(); |
|
3834 | if(!array_key_exists($relation_name,$relatedModels)){ |
|
3835 | throw new EE_Error( |
|
3836 | sprintf( |
|
3837 | __('Cannot get %s related to %s. There is no model relation of that type. There is, however, %s...','event_espresso'), |
|
3838 | $relation_name, |
|
3839 | $this->_get_class_name(), |
|
3840 | implode( ', ', array_keys( $relatedModels )) |
|
3841 | ) |
|
3842 | ); |
|
3843 | } |
|
3844 | return $relatedModels[$relation_name]; |
|
3845 | } |
|
3846 | ||
@@ 4725-4729 (lines=5) @@ | ||
4722 | */ |
|
4723 | private function _prepare_operator_for_sql($operator_supplied){ |
|
4724 | $sql_operator = isset($this->_valid_operators[$operator_supplied]) ? $this->_valid_operators[$operator_supplied] : null; |
|
4725 | if($sql_operator){ |
|
4726 | return $sql_operator; |
|
4727 | }else{ |
|
4728 | throw new EE_Error(sprintf(__("The operator '%s' is not in the list of valid operators: %s", "event_espresso"),$operator_supplied,implode(",",array_keys($this->_valid_operators)))); |
|
4729 | } |
|
4730 | } |
|
4731 | ||
4732 |