Contactable\SWV

CompositeRule::to_array()publicCF7 1.0

Converts the properties to an array.

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

Хуков нет.

Возвращает

Массив. Array of properties.

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

$CompositeRule = new CompositeRule();
$CompositeRule->to_array();

Код CompositeRule::to_array() CF7 5.9.8

public function to_array() {
	$rules_arrays = array_map(
		static function ( $rule ) {
			return $rule->to_array();
		},
		$this->rules
	);

	return array_merge(
		parent::to_array(),
		array(
			'rules' => $rules_arrays,
		)
	);
}