PATH:
home
/
sarkas88.com
/
public_html
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
models
<?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; } }
[-] indexable.php
[open]
[-] seo-meta.php
[open]
[-] indexable-extension.php
[open]
[+]
..
[-] seo-links.php
[open]
[-] indexable-hierarchy.php
[open]
[-] primary-term.php
[open]