Yoast\WP\SEO\General\User_Interface
General_Page_Integration::__construct
Constructs Academy_Integration.
Метод класса: General_Page_Integration{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$General_Page_Integration = new General_Page_Integration(); $General_Page_Integration->__construct( $asset_manager, $current_page_helper, $product_helper, $shortlink_helper, $notification_helper, $alert_dismissal_action, $promotion_manager, $dashboard_configuration, $user_helper, $options_helper, $woocommerce_conditional, $addon_manager, $task_list_configuration );
- $asset_manager(WPSEO_Admin_Asset_Manager) (обязательный)
- The WPSEO_Admin_Asset_Manager.
- $current_page_helper(Current_Page_Helper) (обязательный)
- The Current_Page_Helper.
- $product_helper(Product_Helper) (обязательный)
- The Product_Helper.
- $shortlink_helper(Short_Link_Helper) (обязательный)
- The Short_Link_Helper.
- $notification_helper(Notification_Helper) (обязательный)
- The Notification_Helper.
- $alert_dismissal_action(Alert_Dismissal_Action) (обязательный)
- The alert dismissal action.
- $promotion_manager(Promotion_Manager) (обязательный)
- The promotion manager.
- $dashboard_configuration(Dashboard_Configuration) (обязательный)
- The dashboard configuration.
- $user_helper(User_Helper) (обязательный)
- The user helper.
- $options_helper(Options_Helper) (обязательный)
- The options helper.
- $woocommerce_conditional(WooCommerce_Conditional) (обязательный)
- The WooCommerce conditional.
- $addon_manager(WPSEO_Addon_Manager) (обязательный)
- The WPSEO_Addon_Manager.
- $task_list_configuration(Task_List_Configuration) (обязательный)
- The task list configuration.
Код General_Page_Integration::__construct() General Page Integration:: construct Yoast 27.7
public function __construct(
WPSEO_Admin_Asset_Manager $asset_manager,
Current_Page_Helper $current_page_helper,
Product_Helper $product_helper,
Short_Link_Helper $shortlink_helper,
Notification_Helper $notification_helper,
Alert_Dismissal_Action $alert_dismissal_action,
Promotion_Manager $promotion_manager,
Dashboard_Configuration $dashboard_configuration,
User_Helper $user_helper,
Options_Helper $options_helper,
WooCommerce_Conditional $woocommerce_conditional,
WPSEO_Addon_Manager $addon_manager,
Task_List_Configuration $task_list_configuration
) {
$this->asset_manager = $asset_manager;
$this->current_page_helper = $current_page_helper;
$this->product_helper = $product_helper;
$this->shortlink_helper = $shortlink_helper;
$this->notification_helper = $notification_helper;
$this->alert_dismissal_action = $alert_dismissal_action;
$this->promotion_manager = $promotion_manager;
$this->dashboard_configuration = $dashboard_configuration;
$this->user_helper = $user_helper;
$this->options_helper = $options_helper;
$this->woocommerce_conditional = $woocommerce_conditional;
$this->addon_manager = $addon_manager;
$this->task_list_configuration = $task_list_configuration;
}