@@ 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 |
@@ 326-332 (lines=7) @@ | ||
323 | * @return EE_Form_Section_Proper |
|
324 | * @throws EE_Error |
|
325 | */ |
|
326 | public function get_proper_subsection($name, $require_construction_to_be_finalized = TRUE ){ |
|
327 | $subsection = $this->get_subsection( $name, $require_construction_to_be_finalized ); |
|
328 | if( ! $subsection instanceof EE_Form_Section_Proper){ |
|
329 | throw new EE_Error( |
|
330 | sprintf( |
|
331 | __( "Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso' ), |
|
332 | $name, |
|
333 | get_class( $this ) |
|
334 | ) |
|
335 | ); |