B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sportmx
/
public_html
/
wp-content
/
plugins
/
fakerpress
/
src
/
FakerPress
/
Admin
/
View
/
Filename :
Error_View.php
back
Copy
<?php namespace FakerPress\Admin\View; /** * Class Post_View * * @since 0.6.4 * * @package FakerPress\Admin\View */ class Error_View extends Abstract_View { /** * @inheritDoc */ public static function get_slug(): string { return 'error'; } /** * @inheritDoc */ public function get_label(): string { return esc_attr__( 'Error', 'fakerpress' ); } /** * @inheritDoc */ public function get_title(): string { return esc_attr__( 'Not Found (404)', 'fakerpress' ); } /** * @inheritDoc */ public function has_menu(): bool { return false; } }