| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/robotics/wp-content/plugins/search-and-replace/inc/Page/ |
Upload File : |
<?php
namespace Inpsyde\SearchReplace\Page;
/**
* Interface PageInterface
*
* @package Inpsyde\SearchReplace\Page
*/
interface PageInterface {
/**
* @param string $msg
*/
public function add_error( $msg );
/**
* Echoes the content of the $errors array as formatted HTML if it contains error messages.
*/
public function display_errors();
/**
* Returns the translated Menu title for add_submenu_page().
*
* @return string
*/
public function get_menu_title();
/**
* Returns the translated title for the page.
*
* @return string
*/
public function get_page_title();
/**
* Returns the page_slug for add_submenu_page().
*
* @return string
*/
public function get_slug();
/**
* Rendering the page content.
*/
public function render();
/**
* Saving the data.
*
* @return boolean
*/
public function save();
}