X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/wordpress-seo/src/models
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
models
/
📁
..
📄
indexable-extension.php
(570 B)
📄
indexable-hierarchy.php
(585 B)
📄
indexable.php
(5.26 KB)
📄
primary-term.php
(668 B)
📄
seo-links.php
(1.26 KB)
📄
seo-meta.php
(536 B)
Editing: indexable-extension.php
<?php namespace Yoast\WP\SEO\Models; use Yoast\WP\Lib\Model; /** * Abstract class for indexable extensions. */ abstract class Indexable_Extension extends Model { /** * Holds the Indexable instance. * * @var Indexable|null */ protected $indexable = null; /** * Returns the indexable this extension belongs to. * * @return Indexable The indexable. */ public function indexable() { if ( $this->indexable === null ) { $this->indexable = $this->belongs_to( 'Indexable', 'indexable_id', 'id' )->find_one(); } return $this->indexable; } }
Upload File
Create Folder