Файловый менеджер - Редактировать - /home/harasnat/www/horse/wp-content/plugins/pinterest-for-woocommerce/src/Admin/Input/FormInterface.php
Назад
<?php /** * Interface FormInterface * * @package Automattic\WooCommerce\Pinterest\Admin\Input */ declare( strict_types=1 ); namespace Automattic\WooCommerce\Pinterest\Admin\Input; defined( 'ABSPATH' ) || exit; /** * Interface FormInterface */ interface FormInterface { /** * Return the form's data. * * @return mixed */ public function get_data(); /** * Set the form's data. * * @param mixed $data Form data. * * @return void */ public function set_data( $data ): void; /** * Return the form name. * * @return string */ public function get_name(): string; /** * Set the form's name. * * @param string $name Form name. * * @return FormInterface */ public function set_name( string $name ): FormInterface; /** * Submit the form. * * @param array $submitted_data Submitted form data. * * @return void */ public function submit( array $submitted_data = array() ): void; /** * Return the data used for the form's view. * * @return array */ public function get_view_data(): array; /** * Return the name used for the form's view. * * @return string */ public function get_view_name(): string; /** * Get form children. * * @return FormInterface[] */ public function get_children(): array; /** * Add a child form. * * @param FormInterface $form Form. * * @return FormInterface */ public function add( FormInterface $form ): FormInterface; /** * Remove a child with the given name from the form's children. * * @param string $name Form name. * * @return FormInterface */ public function remove( string $name ): FormInterface; /** * Whether the form contains a child with the given name. * * @param string $name Form name. * * @return bool */ public function has( string $name ): bool; /** * Set parent. * * @param FormInterface|null $form Form. * * @return void */ public function set_parent( ?FormInterface $form ): void; /** * Get parent. * * @return FormInterface|null */ public function get_parent(): ?FormInterface; /** * If this is the root form (i.e. has no parents) * * @return bool */ public function is_root(): bool; /** * Whether the form has been already submitted. * * @return bool */ public function is_submitted(): bool; }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.02 |
proxy
|
phpinfo
|
Настройка