@@ 156-165 (lines=10) @@ | ||
153 | /** |
|
154 | * @return string |
|
155 | */ |
|
156 | public function renderRaw() |
|
157 | { |
|
158 | $return = ''; |
|
159 | if (count($this->rawScripts)) { |
|
160 | $return .= '<script type="text/javascript">'; |
|
161 | $return .= implode("\r\n", $this->rawScripts); |
|
162 | $return .= '</script>'; |
|
163 | } |
|
164 | return $return; |
|
165 | } |
|
166 | } |
|
167 |
@@ 90-99 (lines=10) @@ | ||
87 | /** |
|
88 | * @return string |
|
89 | */ |
|
90 | public function renderRaw() |
|
91 | { |
|
92 | $return = ''; |
|
93 | if (count($this->rawStyles)) { |
|
94 | $return .= '<style type="text/css" media="screen">'; |
|
95 | $return .= implode("\r\n", $this->rawStyles); |
|
96 | $return .= '</style>'; |
|
97 | } |
|
98 | return $return; |
|
99 | } |
|
100 | ||
101 | /** |
|
102 | * @param $path |