@@ 311-317 (lines=7) @@ | ||
308 | * @return EE_Form_Section_Proper |
|
309 | * @throws EE_Error |
|
310 | */ |
|
311 | public function get_proper_subsection($name, $require_construction_to_be_finalized = TRUE ){ |
|
312 | $subsection = $this->get_subsection( $name, $require_construction_to_be_finalized ); |
|
313 | if( ! $subsection instanceof EE_Form_Section_Proper){ |
|
314 | throw new EE_Error(sprintf(__("Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso'),$name, get_class($this))); |
|
315 | } |
|
316 | return $subsection; |
|
317 | } |
|
318 | ||
319 | ||
320 |
@@ 3855-3861 (lines=7) @@ | ||
3852 | * @throws EE_Error |
|
3853 | * @return EE_Model_Field_Base |
|
3854 | */ |
|
3855 | public function field_settings_for($fieldName){ |
|
3856 | $fieldSettings=$this->field_settings(true); |
|
3857 | if( ! array_key_exists($fieldName,$fieldSettings)){ |
|
3858 | throw new EE_Error(sprintf(__("There is no field/column '%s' on '%s'",'event_espresso'),$fieldName,get_class($this))); |
|
3859 | } |
|
3860 | return $fieldSettings[$fieldName]; |
|
3861 | } |
|
3862 | ||
3863 | /** |
|
3864 | * Checks if this field exists on this model |