Contactable\SWV

Rule::get_property()publicCF7 1.0

Returns the property value specified by the given property name.

Метод класса: Rule{}

Хуков нет.

Возвращает

Разное. Property value.

Использование

$Rule = new Rule();
$Rule->get_property( $name );
$name(строка) (обязательный)
Property name.

Код Rule::get_property() CF7 5.9.8

public function get_property( $name ) {
	if ( isset( $this->properties[$name] ) ) {
		return $this->properties[$name];
	}
}