Automattic\WooCommerce\Internal\Admin\Logging\FileV2
SearchListTable::__construct()
SearchListTable class.
Метод класса: SearchListTable{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$SearchListTable = new SearchListTable(); $SearchListTable->__construct( $file_controller, $page_controller );
- $file_controller(FileController) (обязательный)
- Instance of FileController.
- $page_controller(PageController) (обязательный)
- Instance of PageController.
Код SearchListTable::__construct() SearchListTable:: construct WC 9.7.1
public function __construct( FileController $file_controller, PageController $page_controller ) { $this->file_controller = $file_controller; $this->page_controller = $page_controller; parent::__construct( array( 'singular' => 'wc-logs-search-result', 'plural' => 'wc-logs-search-results', 'ajax' => false, ) ); }