003-2016 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @class ClassicBrownThemePlugin * @ingroup plugins_themes_classicBrown * * @brief "ClassicBrown" theme plugin */ import('classes.plugins.ThemePlugin'); class ClassicBrownThemePlugin extends ThemePlugin { /** * Get the name of this plugin. The name must be unique within * its category. * @return String name of plugin */ function getName() { return 'ClassicBrownThemePlugin'; } function getDisplayName() { return 'ClassicBrown Theme'; } function getDescription() { return 'Classic brown layout'; } function getStylesheetFilename() { return 'classicBrown.css'; } function getLocaleFilename($locale) { return null; // No locale data } } ?>