1 | <?php |
||
18 | class Metas extends AbstractSeries |
||
19 | { |
||
20 | /** |
||
21 | * |
||
22 | * Adds a `<meta ...>` tag to the series. |
||
23 | * |
||
24 | * @param array $attr Attributes for the <link> tag. |
||
25 | * |
||
26 | * @param int $pos The meta position in the series. |
||
27 | * |
||
28 | * @return self |
||
29 | * |
||
30 | */ |
||
31 | 1 | public function add(array $attr = array(), $pos = 100) |
|
36 | |||
37 | /** |
||
38 | * |
||
39 | * Returns a `<meta http-equiv="" content="">` tag. |
||
40 | * |
||
41 | * @param string $http_equiv The http-equiv type. |
||
42 | * |
||
43 | * @param string $content The content value. |
||
44 | * |
||
45 | * @param int $pos The meta position in the series. |
||
46 | * |
||
47 | * @return self |
||
48 | * |
||
49 | */ |
||
50 | 2 | public function addHttp($http_equiv, $content, $pos = 100) |
|
59 | |||
60 | /** |
||
61 | * |
||
62 | * Returns a `<meta name="" content="">` tag. |
||
63 | * |
||
64 | * @param string $name The name value. |
||
65 | * |
||
66 | * @param string $content The content value. |
||
67 | * |
||
68 | * @param int $pos The meta position in the series. |
||
69 | * |
||
70 | * @return self |
||
71 | * |
||
72 | */ |
||
73 | 2 | public function addName($name, $content, $pos = 100) |
|
82 | } |
||
83 |