MediaWiki  REL1_24
CssContentHandler.php
Go to the documentation of this file.
00001 <?php
00030 class CssContentHandler extends CodeContentHandler {
00031 
00035     public function __construct( $modelId = CONTENT_MODEL_CSS ) {
00036         parent::__construct( $modelId, array( CONTENT_FORMAT_CSS ) );
00037     }
00038 
00039     protected function getContentClass() {
00040         return 'CssContent';
00041     }
00042 }