0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
3.3.1-5
/
standard
/
htdocs
/
skins
/
_rss2
/
[
Home
]
File: _skin.class.php
<?php /** * This file implements a class derived of the generic Skin class in order to provide custom code for * the skin in this folder. * * This file is part of the b2evolution project - {@link http://b2evolution.net/} * * @package skins * @subpackage custom * * @version $Id: _skin.class.php,v 1.1 2009/05/23 20:20:18 fplanque Exp $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); /** * Specific code for this skin. * * ATTENTION: if you make a new skin you have to change the class name below accordingly */ class _rss2_Skin extends Skin { /** * Get default name for the skin. * Note: the admin can customize it. */ function get_default_name() { return 'RSS 2.0'; } /** * Get default type for the skin. */ function get_default_type() { return 'feed'; } } ?>