Merge "Fixed dependencies for jquery.collapsibleTabs"
[lhc/web/wiklou.git] / includes / content / CssContent.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @since 1.21
19 *
20 * @file
21 * @ingroup Content
22 *
23 * @author Daniel Kinzler
24 */
25 class CssContent extends TextContent {
26 public function __construct( $text ) {
27 parent::__construct( $text, CONTENT_MODEL_CSS );
28 }
29
30 /**
31 * Returns a Content object with pre-save transformations applied using
32 * Parser::preSaveTransform().
33 *
34 * @param $title Title
35 * @param $user User
36 * @param $popts ParserOptions
37 * @return Content
38 */
39 public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
40 global $wgParser;
41 // @todo: make pre-save transformation optional for script pages
42
43 $text = $this->getNativeData();
44 $pst = $wgParser->preSaveTransform( $text, $title, $user, $popts );
45
46 return new CssContent( $pst );
47 }
48
49
50 protected function getHtml( ) {
51 $html = "";
52 $html .= "<pre class=\"mw-code mw-css\" dir=\"ltr\">\n";
53 $html .= $this->getHighlightHtml( );
54 $html .= "\n</pre>\n";
55
56 return $html;
57 }
58 }