1 | <?php namespace XoopsModules\Smartobject; |
||
29 | class SeoObject extends Smartobject\BaseSmartObject |
||
30 | { |
||
31 | /** |
||
32 | * SmartSeoObject constructor. |
||
33 | */ |
||
34 | public function __construct() |
||
41 | |||
42 | /** |
||
43 | * Return the value of the short_url field of this object |
||
44 | * |
||
45 | * @return string |
||
46 | */ |
||
47 | public function short_url() |
||
51 | |||
52 | /** |
||
53 | * Return the value of the meta_keywords field of this object |
||
54 | * |
||
55 | * @return string |
||
56 | */ |
||
57 | public function meta_keywords() |
||
61 | |||
62 | /** |
||
63 | * Return the value of the meta_description field of this object |
||
64 | * |
||
65 | * @return string |
||
66 | */ |
||
67 | public function meta_description() |
||
71 | } |
||
72 |