Current Path : /var/www/ooareogundevinitiative/wp-content/plugins/brizy/editor/forms/ |
Current File : /var/www/ooareogundevinitiative/wp-content/plugins/brizy/editor/forms/dynamic-props-aware.php |
<?php trait Brizy_Editor_Forms_DynamicPropsAware { /** * @var string[] */ protected $data; /** * @param $name * @param $arguments * * @return mixed|null * @throws Exception */ public function __call( $name, $arguments ) { $method = substr( $name, 0, 3 ); $key = substr( $name, 3 ); if ( empty( $key ) ) { throw new Exception( 'Invalid key. You method must look like this: setKey();' ); } switch ( $method ) { case 'set': return $this->set( strtolower( $key ), $arguments[0] ); break; case 'get': return $this->get( strtolower( $key ) ); break; } } /** * @param $name * * @return null|mixed */ protected function get( $name ) { if ( is_null( $name ) ) { return; } if ( isset( $this->data[ $name ] ) ) { return $this->data[ $name ]; } return null; } /** * @param $key * @param $value * * @return null|mixed */ protected function set( $key, $value ) { if ( is_null( $value ) ) { return null; } return $this->data[ $key ] = $value; } }