PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 27.7
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v27.7
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / src / models / indexable-hierarchy.php

indexable-hierarchy.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 27.7, at src/models/indexable-hierarchy.php

29 lines 585 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Yoast\WP\SEO\Models;
4
5 use Yoast\WP\Lib\Model;
6
7 /**
8 * Indexable Hierarchy model definition.
9 *
10 * @property int $indexable_id The ID of the indexable.
11 * @property int $ancestor_id The ID of the indexable's ancestor.
12 * @property int $depth The depth of the ancestry. 1 being a parent, 2 being a grandparent etc.
13 * @property int $blog_id Blog ID.
14 */
15 class Indexable_Hierarchy extends Model {
16
17 /**
18 * Which columns contain int values.
19 *
20 * @var array
21 */
22 protected $int_columns = [
23 'indexable_id',
24 'ancestor_id',
25 'depth',
26 'blog_id',
27 ];
28 }
29