Submit
Path:
~
/
home
/
getwphos
/
www
/
shellfish
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
models
/
File Content:
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 */ 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; } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
indexable-extension.php
565 bytes
0644
indexable-hierarchy.php
585 bytes
0644
indexable.php
5387 bytes
0644
primary-term.php
668 bytes
0644
seo-links.php
1294 bytes
0644
seo-meta.php
536 bytes
0644
N4ST4R_ID | Naxtarrr