1 | <?php |
||
5 | abstract class SEO { |
||
6 | |||
7 | private static $data = []; |
||
8 | |||
9 | # Init SEO data |
||
10 | |||
11 | public static function init() { |
||
15 | |||
16 | # Get/set title |
||
17 | |||
18 | public static function title(string $value = null) { |
||
24 | |||
25 | # Get/set description |
||
26 | |||
27 | public static function description(string $value = null) { |
||
33 | |||
34 | # Get/set keywords |
||
35 | |||
36 | public static function keywords(string $value = null) { |
||
42 | |||
43 | # Get/set robots index |
||
44 | |||
45 | public static function robotsIndex(bool $value = null) { |
||
51 | |||
52 | # Get/set robots follow |
||
53 | |||
54 | public static function robotsFollow(bool $value = null) { |
||
60 | |||
61 | # Get/set canonical |
||
62 | |||
63 | public static function canonical(string $value = null) { |
||
69 | } |
||
70 | } |
||
71 |