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