📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 14:29:39
📂
/ (Root)
/
home
/
apkbfjox
/
kattu.com.pk
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
presenters
📍 /home/apkbfjox/kattu.com.pk/wp-content/plugins/wordpress-seo/src/presenters
🔄 Refresh
✏️
Editing: abstract-presenter.php
Writable
<?php namespace Yoast\WP\SEO\Presenters; /** * Abstract_Presenter class. */ abstract class Abstract_Presenter { /** * Returns the output as string. * * @return string The output. */ abstract public function present(); /** * Returns the output as string. * * @return string The output. */ public function __toString() { return $this->present(); } }
💾 Save Changes
❌ Cancel