WPCF7_SWV_Rule::get_property()
Returns the property value specified by the given property name.
Метод класса: WPCF7_SWV_Rule{}
Хуков нет.
Возвращает
Разное
. Property value.
Использование
$WPCF7_SWV_Rule = new WPCF7_SWV_Rule(); $WPCF7_SWV_Rule->get_property( $name );
- $name(строка) (обязательный)
- Property name.
Код WPCF7_SWV_Rule::get_property() WPCF7 SWV Rule::get property CF7 5.7.7
public function get_property( $name ) { if ( isset( $this->properties[$name] ) ) { return $this->properties[$name]; } }