403Webshell
Server IP : 172.67.214.6  /  Your IP : 216.73.216.84
Web Server : LiteSpeed
System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
User : redwjova ( 1790)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : OFF |  Pkexec : OFF
Directory :  /home/redwjova/clevorio.com/wp-content/plugins/wordpress-seo/src/presenters/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/redwjova/clevorio.com/wp-content/plugins/wordpress-seo/src/presenters/url-list-presenter.php
<?php

namespace Yoast\WP\SEO\Presenters;

/**
 * Presenter class for the URL list.
 */
class Url_List_Presenter extends Abstract_Presenter {

	/**
	 * If the url should be target blank.
	 *
	 * @var bool
	 */
	private $target_blank;

	/**
	 * A list of arrays containing titles and URLs.
	 *
	 * @var array
	 */
	private $links;

	/**
	 * Classname for the URL list.
	 *
	 * @var string
	 */
	private $class_name;

	/**
	 * Url_List_Presenter constructor.
	 *
	 * @param array  $links        A list of arrays containing titles and urls.
	 * @param string $class_name   Classname for the url list.
	 * @param bool   $target_blank If the url should be target blank.
	 */
	public function __construct( $links, $class_name = 'yoast-url-list', $target_blank = false ) {
		$this->links        = $links;
		$this->class_name   = $class_name;
		$this->target_blank = $target_blank;
	}

	/**
	 * Presents the URL list.
	 *
	 * @return string The URL list.
	 */
	public function present() {
		$output = '<ul class="' . $this->class_name . '">';
		foreach ( $this->links as $link ) {
			$output .= '<li><a';
			if ( $this->target_blank ) {
				$output .= ' target = "_blank"';
			}
			$output .= ' href="' . $link['permalink'] . '">' . $link['title'] . '</a></li>';
		}
		$output .= '</ul>';

		return $output;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit