PATH:
home
/
letacommog
/
les-compagnons-exterieur
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
presenters
<?php namespace Yoast\WP\SEO\Presenters; use WPSEO_Replace_Vars; use Yoast\WP\SEO\Presentations\Indexable_Presentation; use Yoast\WP\SEO\Surfaces\Helpers_Surface; /** * Abstract presenter class for indexable presentations. */ abstract class Abstract_Indexable_Presenter extends Abstract_Presenter { /** * The WPSEO Replace Vars object. * * @var WPSEO_Replace_Vars */ public $replace_vars; /** * The indexable presentation. * * @var Indexable_Presentation */ public $presentation; /** * The helpers surface * * @var Helpers_Surface */ public $helpers; /** * Gets the raw value of a presentation. * * @return string|array The raw value. */ abstract public function get(); /** * Replace replacement variables in a string. * * @param string $string The string. * * @return string The string with replacement variables replaced. */ protected function replace_vars( $string ) { return $this->replace_vars->replace( $string, $this->presentation->source ); } }
[+]
..
[+]
twitter
[-] schema-presenter.php
[edit]
[+]
open-graph
[+]
admin
[-] robots-presenter.php
[edit]
[-] meta-description-presenter.php
[edit]
[-] googlebot-presenter.php
[edit]
[-] url-list-presenter.php
[edit]
[-] abstract-indexable-tag-presenter.php
[edit]
[-] breadcrumbs-presenter.php
[edit]
[+]
slack
[+]
webmaster
[-] canonical-presenter.php
[edit]
[+]
debug
[-] abstract-indexable-presenter.php
[edit]
[-] rel-prev-presenter.php
[edit]
[-] title-presenter.php
[edit]
[-] bingbot-presenter.php
[edit]
[-] abstract-presenter.php
[edit]
[-] rel-next-presenter.php
[edit]