📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 06:41:00
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
presenters
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wordpress-seo/src/presenters
🔄 Refresh
✏️
Editing: abstract-indexable-presenter.php
Writable
<?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 ); } }
💾 Save Changes
❌ Cancel