WPCF7_REST_Controller::get_argument_schema()privateCF7 1.0

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

Хуков нет.

Возвращает

null. Ничего (null).

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

// private - только в коде основоного (родительского) класса
$result = $this->get_argument_schema();

Код WPCF7_REST_Controller::get_argument_schema() CF7 5.9.3

private function get_argument_schema() {
	return array(
		'id' => array(
			'description' => __( "Unique identifier for the contact form.", 'contact-form-7' ),
			'type' => 'integer',
			'required' => true,
		),
	);
}