1 | <?php |
||
12 | abstract class Seo extends Entity |
||
13 | { |
||
14 | /** |
||
15 | * @orm\Column(type="boolean", nullable=true) |
||
16 | */ |
||
17 | private $ownSeo; |
||
18 | |||
19 | /** |
||
20 | * @orm\Column(type="text", nullable=true) |
||
21 | */ |
||
22 | private $metaTitle; |
||
23 | |||
24 | /** |
||
25 | * @orm\Column(type="text", nullable=true) |
||
26 | */ |
||
27 | private $metaDescription; |
||
28 | |||
29 | /** |
||
30 | * @orm\Column(type="text", nullable=true) |
||
31 | */ |
||
32 | private $metaKeywords; |
||
33 | |||
34 | /* TODO */ |
||
35 | private $url; |
||
36 | |||
37 | public function getMetaTitle() |
||
41 | |||
42 | /** |
||
43 | * @param string $metaTitle |
||
44 | */ |
||
45 | public function setMetaTitle($metaTitle) |
||
49 | |||
50 | public function getMetaDescription() |
||
54 | |||
55 | /** |
||
56 | * @param string $metaDescription |
||
57 | */ |
||
58 | public function setMetaDescription($metaDescription) |
||
62 | |||
63 | public function getMetaKeywords() |
||
67 | |||
68 | /** |
||
69 | * @param string $metaKeywords |
||
70 | */ |
||
71 | public function setMetaKeywords($metaKeywords) |
||
75 | } |
||
76 |