From caa16feb40b4e66cd0a9b10ff283fa942cebcffe Mon Sep 17 00:00:00 2001 From: e107steved Date: Sun, 10 Jan 2010 12:19:53 +0000 Subject: [PATCH] Documentation headers updated --- e107_plugins/list_new/admin_list_config.php | 13 ++++++++++--- e107_plugins/list_new/languages/English.php | 13 ++++++++++--- .../languages/English_admin_list_new.php | 13 ++++++++++--- e107_plugins/list_new/list.php | 13 ++++++++++--- e107_plugins/list_new/list_admin_class.php | 17 +++++++---------- e107_plugins/list_new/list_class.php | 14 ++++++++------ e107_plugins/list_new/list_new_menu.php | 13 ++++++++++--- e107_plugins/list_new/list_recent_menu.php | 13 ++++++++++--- e107_plugins/list_new/list_shortcodes.php | 13 ++++++++++--- e107_plugins/list_new/list_template.php | 14 +++++++++++--- e107_plugins/list_new/section/list_comment.php | 14 +++++++++++--- e107_plugins/list_new/section/list_members.php | 13 ++++++++++--- e107_plugins/list_new/section/list_news.php | 14 +++++++++++--- 13 files changed, 128 insertions(+), 49 deletions(-) diff --git a/e107_plugins/list_new/admin_list_config.php b/e107_plugins/list_new/admin_list_config.php index 822d11b65..029425070 100644 --- a/e107_plugins/list_new/admin_list_config.php +++ b/e107_plugins/list_new/admin_list_config.php @@ -9,12 +9,19 @@ * List Admin Config * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/admin_list_config.php,v $ - * $Revision: 1.10 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.11 $ + * $Date: 2010-01-10 12:19:35 $ + * $Author: e107steved $ * */ +/** + * Admin for list_new plugin admin + * + * @package e107_plugins + * @subpackage list_new + */ + //include and require several classes require_once("../../class2.php"); if(!getperms("1") || !plugInstalled('list_new')) diff --git a/e107_plugins/list_new/languages/English.php b/e107_plugins/list_new/languages/English.php index 5a0676ff0..55aec22a8 100644 --- a/e107_plugins/list_new/languages/English.php +++ b/e107_plugins/list_new/languages/English.php @@ -9,12 +9,19 @@ * List Language * | $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/languages/English.php,v $ -| $Revision: 1.8 $ -| $Date: 2009-11-18 01:05:47 $ -| $Author: e107coders $ +| $Revision: 1.9 $ +| $Date: 2010-01-10 12:19:45 $ +| $Author: e107steved $ * */ +/** + * Language file list_new plugin + * + * @package e107_plugins + * @subpackage list_new + */ + if (!defined("PAGE_NAME")) { define("PAGE_NAME", "List New Items"); } define("LIST_MENU_1", "recent additions"); diff --git a/e107_plugins/list_new/languages/English_admin_list_new.php b/e107_plugins/list_new/languages/English_admin_list_new.php index fd6cfca46..41bf05309 100644 --- a/e107_plugins/list_new/languages/English_admin_list_new.php +++ b/e107_plugins/list_new/languages/English_admin_list_new.php @@ -9,12 +9,19 @@ * List Language Admin * | $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/languages/English_admin_list_new.php,v $ -| $Revision: 1.3 $ -| $Date: 2009-11-18 01:05:47 $ -| $Author: e107coders $ +| $Revision: 1.4 $ +| $Date: 2010-01-10 12:19:48 $ +| $Author: e107steved $ * */ +/** + * Language file for list_new plugin admin + * + * @package e107_plugins + * @subpackage list_new + */ + if (!defined("PAGE_NAME")) { define("PAGE_NAME", "List New Items"); } define("LIST_PLUGIN_1", "List"); diff --git a/e107_plugins/list_new/list.php b/e107_plugins/list_new/list.php index 06c31ed7c..f75e4a45a 100644 --- a/e107_plugins/list_new/list.php +++ b/e107_plugins/list_new/list.php @@ -9,12 +9,19 @@ * List Page * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/list.php,v $ - * $Revision: 1.5 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.6 $ + * $Date: 2010-01-10 12:19:39 $ + * $Author: e107steved $ * */ +/** + * User interface for list_new plugin admin + * + * @package e107_plugins + * @subpackage list_new + */ + require_once("../../class2.php"); if (!plugInstalled('list_new')) diff --git a/e107_plugins/list_new/list_admin_class.php b/e107_plugins/list_new/list_admin_class.php index ad8d84c2e..1aba54f8c 100644 --- a/e107_plugins/list_new/list_admin_class.php +++ b/e107_plugins/list_new/list_admin_class.php @@ -9,21 +9,18 @@ * List Admin Class * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/list_admin_class.php,v $ - * $Revision: 1.7 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.8 $ + * $Date: 2010-01-10 12:19:39 $ + * $Author: e107steved $ * */ if (!defined('e107_INIT')) { exit; } /** - * e107 List New Plugin - * @package list_new - */ -/** - * class list_admin - * The admin class - * @package list_admin + * Core class for list_new plugin admin + * + * @package e107_plugins + * @subpackage list_new */ class list_admin { diff --git a/e107_plugins/list_new/list_class.php b/e107_plugins/list_new/list_class.php index 5bcc11e29..47d5f7533 100644 --- a/e107_plugins/list_new/list_class.php +++ b/e107_plugins/list_new/list_class.php @@ -9,21 +9,23 @@ * List Class * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/list_class.php,v $ - * $Revision: 1.12 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.13 $ + * $Date: 2010-01-10 12:19:41 $ + * $Author: e107steved $ * */ if (!defined('e107_INIT')) { exit; } /** - * e107 List New Plugin - * @package list_new + * Base class for list_new plugin + * + * @package e107_plugins + * @subpackage list_new */ + /** * class listclass * The base class - * @package list_new */ class listclass { diff --git a/e107_plugins/list_new/list_new_menu.php b/e107_plugins/list_new/list_new_menu.php index 4a0ef3753..17777721d 100644 --- a/e107_plugins/list_new/list_new_menu.php +++ b/e107_plugins/list_new/list_new_menu.php @@ -9,12 +9,19 @@ * List Menu New * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/list_new_menu.php,v $ - * $Revision: 1.5 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.6 $ + * $Date: 2010-01-10 12:19:41 $ + * $Author: e107steved $ * */ +/** + * Menu for list_new plugin + * + * @package e107_plugins + * @subpackage list_new + */ + if (!defined('e107_INIT')) { exit; } if (!plugInstalled('list_new')) diff --git a/e107_plugins/list_new/list_recent_menu.php b/e107_plugins/list_new/list_recent_menu.php index e3eac1d1f..23ee74a57 100644 --- a/e107_plugins/list_new/list_recent_menu.php +++ b/e107_plugins/list_new/list_recent_menu.php @@ -9,12 +9,19 @@ * List Menu Recent * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/list_recent_menu.php,v $ - * $Revision: 1.6 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.7 $ + * $Date: 2010-01-10 12:19:42 $ + * $Author: e107steved $ * */ +/** + * Menu for list_new plugin + * + * @package e107_plugins + * @subpackage list_new + */ + if (!defined('e107_INIT')) { exit; } if (!plugInstalled('list_new')) diff --git a/e107_plugins/list_new/list_shortcodes.php b/e107_plugins/list_new/list_shortcodes.php index 8f103febb..ff33b5519 100644 --- a/e107_plugins/list_new/list_shortcodes.php +++ b/e107_plugins/list_new/list_shortcodes.php @@ -9,12 +9,19 @@ * List Shortcodes * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/list_shortcodes.php,v $ - * $Revision: 1.6 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.7 $ + * $Date: 2010-01-10 12:19:43 $ + * $Author: e107steved $ * */ +/** + * Shortcodes for list_new plugin + * + * @package e107_plugins + * @subpackage list_new + */ + if (!defined('e107_INIT')) { exit; } register_shortcode('list_shortcodes', true); diff --git a/e107_plugins/list_new/list_template.php b/e107_plugins/list_new/list_template.php index 9e1ae7ae7..9b72b7f2a 100644 --- a/e107_plugins/list_new/list_template.php +++ b/e107_plugins/list_new/list_template.php @@ -9,11 +9,19 @@ * List Template * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/list_template.php,v $ - * $Revision: 1.5 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.6 $ + * $Date: 2010-01-10 12:19:43 $ + * $Author: e107steved $ * */ + +/** + * Templates for list_new plugin + * + * @package e107_plugins + * @subpackage list_new + */ + if (!defined('e107_INIT')) { exit; } global $sc_style, $list_shortcodes; diff --git a/e107_plugins/list_new/section/list_comment.php b/e107_plugins/list_new/section/list_comment.php index aaf674244..a40138d10 100644 --- a/e107_plugins/list_new/section/list_comment.php +++ b/e107_plugins/list_new/section/list_comment.php @@ -9,11 +9,19 @@ * Comment e_list Handler * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/section/list_comment.php,v $ - * $Revision: 1.4 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.5 $ + * $Date: 2010-01-10 12:19:50 $ + * $Author: e107steved $ * */ + +/** + * Comment interface for list_new plugin + * + * @package e107_plugins + * @subpackage list_new + */ + if (!defined('e107_INIT')) { exit; } global $tp, $cobj; diff --git a/e107_plugins/list_new/section/list_members.php b/e107_plugins/list_new/section/list_members.php index 027816880..b7f967479 100644 --- a/e107_plugins/list_new/section/list_members.php +++ b/e107_plugins/list_new/section/list_members.php @@ -9,11 +9,18 @@ * Members e_list Handler * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/section/list_members.php,v $ - * $Revision: 1.6 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.7 $ + * $Date: 2010-01-10 12:19:50 $ + * $Author: e107steved $ * */ + +/** + * Users interface for list_new plugin + * + * @package e107_plugins + * @subpackage list_new + */ if (!defined('e107_INIT')) { exit; } class list_members diff --git a/e107_plugins/list_new/section/list_news.php b/e107_plugins/list_new/section/list_news.php index 4d43b7274..1f4fed698 100644 --- a/e107_plugins/list_new/section/list_news.php +++ b/e107_plugins/list_new/section/list_news.php @@ -9,11 +9,19 @@ * News e_list Handler * * $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/section/list_news.php,v $ - * $Revision: 1.4 $ - * $Date: 2009-11-18 01:05:47 $ - * $Author: e107coders $ + * $Revision: 1.5 $ + * $Date: 2010-01-10 12:19:53 $ + * $Author: e107steved $ * */ + +/** + * News interface for list_new plugin + * + * @package e107_plugins + * @subpackage list_new + */ + if (!defined('e107_INIT')) { exit; } class list_news