/
home
/
rekodeb
/
webrennes
/
wp-content
/
plugins
/
duplicator-pro
/
src
/
Core
/
Controllers
/
Upload File
HOME
<?php /** * Abstract class that manages a blank page. * The basic render function doesn't handle anything and all content must be generated in the content, including the wrapper. * * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ namespace Duplicator\Core\Controllers; use Duplicator\Core\CapMng; use Duplicator\Libs\Snap\SnapUtil; abstract class AbstractBlankPageController extends AbstractSinglePageController { /** * Excecute controller logic * * @return void */ public function run() { if ( !$this->isEnabled() || SnapUtil::sanitizeTextInput(SnapUtil::INPUT_REQUEST, 'page') !== $this->pageSlug ) { return; } parent::run(); $this->render(); } /** * Register admin page * * @return false|string */ public function registerMenu() { if (!$this->isEnabled() || !CapMng::can($this->capatibility, false)) { return false; } add_action('admin_init', array($this, 'run')); $this->menuHookSuffix = add_submenu_page( '', '', '', $this->capatibility, $this->pageSlug, function () { // do nothing } ); return $this->menuHookSuffix; } /** * Render page * * @return never */ public function render() { parent::render(); die; } }