1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 21:27:25 +02:00

PHPdoc fix

This commit is contained in:
marj
2009-11-17 15:29:33 +00:00
parent 96114a36fb
commit c3c7b3ca96
2 changed files with 15 additions and 15 deletions

View File

@@ -9,9 +9,9 @@
* e107 Shortcode handler * e107 Shortcode handler
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/shortcode_handler.php,v $ * $Source: /cvs_backup/e107_0.8/e107_handlers/shortcode_handler.php,v $
* $Revision: 1.34 $ * $Revision: 1.35 $
* $Date: 2009-10-20 16:00:37 $ * $Date: 2009-11-17 15:29:33 $
* $Author: secretr $ * $Author: marj_nl_fr $
*/ */
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
@@ -142,7 +142,8 @@ class e_shortcode
/** /**
* Register any shortcode from the shortcode/override/ directory * Register any shortcode from the shortcode/override/ directory
* @return *
* @return void
*/ */
protected function loadOverrideShortcodes() protected function loadOverrideShortcodes()
{ {
@@ -163,7 +164,8 @@ class e_shortcode
/** /**
* Register any shortcodes that were registered by the theme * Register any shortcodes that were registered by the theme
* $register_sc[] = 'MY_THEME_CODE' * $register_sc[] = 'MY_THEME_CODE'
* @return *
* @return void
*/ */
protected function loadThemeShortcodes() protected function loadThemeShortcodes()
{ {
@@ -185,7 +187,8 @@ class e_shortcode
/** /**
* Register all .sc files found in plugin directories (via pref) * Register all .sc files found in plugin directories (via pref)
* @return *
* @return void
*/ */
protected function loadPluginSCFiles() protected function loadPluginSCFiles()
{ {
@@ -219,7 +222,8 @@ class e_shortcode
/** /**
* Register Plugin Shortcode Batch files (e_shortcode.php) for use site-wide. * Register Plugin Shortcode Batch files (e_shortcode.php) for use site-wide.
* Equivalent to multiple .sc files in the plugin's folder. * Equivalent to multiple .sc files in the plugin's folder.
* @return *
* @return void
*/ */
protected function loadPluginShortcodes() protected function loadPluginShortcodes()
{ {
@@ -259,7 +263,8 @@ class e_shortcode
/** /**
* Register Core Shortcode Batches. * Register Core Shortcode Batches.
* FIXME - currently loaded all the time (even on front-end) * FIXME - currently loaded all the time (even on front-end)
* @return *
* @return void
*/ */
function loadCoreShortcodes() function loadCoreShortcodes()
{ {

View File

@@ -9,8 +9,8 @@
* *
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/sitelinks_class.php,v $ * $Source: /cvs_backup/e107_0.8/e107_handlers/sitelinks_class.php,v $
* $Revision: 1.20 $ * $Revision: 1.21 $
* $Date: 2009-11-17 10:46:34 $ * $Date: 2009-11-17 15:29:33 $
* $Author: marj_nl_fr $ * $Author: marj_nl_fr $
*/ */
@@ -18,11 +18,6 @@ if (!defined('e107_INIT')) { exit; }
include_lan(e_LANGUAGEDIR.e_LANGUAGE."/lan_sitelinks.php"); include_lan(e_LANGUAGEDIR.e_LANGUAGE."/lan_sitelinks.php");
/**
* @return void
* @desc Outputs sitelinks
*/
class sitelinks class sitelinks
{ {