Automattic\WooCommerce\Internal\Admin\ProductForm
Tab::__construct
Constructor
Метод класса: Tab{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Tab = new Tab(); $Tab->__construct( $id, $plugin_id, $additional_args );
- $id(строка) (обязательный)
- Field id.
- $plugin_id(строка) (обязательный)
- Plugin id.
- $additional_args(массив) (обязательный)
- Array containing the necessary arguments.
php $args = array( 'name' => (string) Tab name. Required. 'title' => (string) Tab title. Required. 'order' => (int) Tab order. 'properties' => (array) Tab properties. )..
Код Tab::__construct() Tab:: construct WC 10.4.3
public function __construct( $id, $plugin_id, $additional_args ) {
parent::__construct( $id, $plugin_id, $additional_args );
$this->required_arguments = array(
'name',
'title',
);
$missing_arguments = self::get_missing_arguments( $additional_args );
if ( count( $missing_arguments ) > 0 ) {
throw new \Exception(
sprintf(
/* translators: 1: Missing arguments list. */
esc_html__( 'You are missing required arguments of WooCommerce ProductForm Tab: %1$s', 'woocommerce' ),
join( ', ', $missing_arguments )
)
);
}
}