/** * @fn _getThemeFolder () * @brief Theme folder * * Initalize the theme folder * * @author Ruben Storm * @version 0.0.5 * @since 0.0.5 * @return string self::$themeFolder * the path of the theme folder */ private static function _getThemeFolder() { // get the name of the theme self::$themeFolder = self::$themeRootFolder . self::_getThemeName() . '/'; return self::$themeFolder; }
/** * @fn static private function _get_Theme() * @brief Printer * * Print the screen if all is done * * @author Ruben Storm * @version 0.0.5 * @since 0.0.5 */ private static function _get_Theme() { /* get the Shop header */ echo libTheme::mk_theme(); }