diff options
| author | Lester Caine <lester@lsces.co.uk> | 2007-06-22 09:17:13 +0000 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2007-06-22 09:17:13 +0000 |
| commit | dcc32ee052636f6aa0a0ede23ae99b4b700634e9 (patch) | |
| tree | 40a9ab829872bb07760987994be0089dfdb599af | |
| parent | f286ddb171372ef32a4690d5172bc48fea087386 (diff) | |
| download | liberty-dcc32ee052636f6aa0a0ede23ae99b4b700634e9.tar.gz liberty-dcc32ee052636f6aa0a0ede23ae99b4b700634e9.tar.bz2 liberty-dcc32ee052636f6aa0a0ede23ae99b4b700634e9.zip | |
Add phpdoc comment blocks
| -rw-r--r-- | add_structure_content.php | 11 | ||||
| -rw-r--r-- | ajax_comments.php | 6 | ||||
| -rw-r--r-- | content_history_inc.php | 6 | ||||
| -rw-r--r-- | preview.php | 16 | ||||
| -rw-r--r-- | redirect.php | 12 |
5 files changed, 45 insertions, 6 deletions
diff --git a/add_structure_content.php b/add_structure_content.php index 8f192fe..73c5668 100644 --- a/add_structure_content.php +++ b/add_structure_content.php @@ -1,5 +1,16 @@ <?php +/** + * @version $Header: /cvsroot/bitweaver/_bit_liberty/add_structure_content.php,v 1.3 2007/06/22 09:17:13 lsces Exp $ + * + * @author spider <spider@steelsun.com> + * @version $Revision: 1.3 $ + * @package liberty + * @subpackage functions + */ +/** + * required setup + */ $gLiteweightScan = TRUE; require_once( '../bit_setup_inc.php' ); diff --git a/ajax_comments.php b/ajax_comments.php index 300794a..1e49ee9 100644 --- a/ajax_comments.php +++ b/ajax_comments.php @@ -1,9 +1,13 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_liberty/ajax_comments.php,v 1.3 2007/06/11 21:22:34 wjames5 Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_liberty/ajax_comments.php,v 1.4 2007/06/22 09:17:13 lsces Exp $ * @package liberty * @subpackage functions */ + +/** + * required setup + */ require_once( '../bit_setup_inc.php' ); $staticContent = new LibertyContent(); diff --git a/content_history_inc.php b/content_history_inc.php index ae1d253..6efcba7 100644 --- a/content_history_inc.php +++ b/content_history_inc.php @@ -1,4 +1,10 @@ <?php +/** + * @version $Revision: 1.8 $ + * @package liberty + * @subpackage functions + */ + $gBitSmarty->assign('source', 0); // If we have to include a preview please show it diff --git a/preview.php b/preview.php index b55ec66..3936d21 100644 --- a/preview.php +++ b/preview.php @@ -1,10 +1,16 @@ <?php +/** + * @version $Header: /cvsroot/bitweaver/_bit_liberty/preview.php,v 1.3 2007/06/22 09:17:13 lsces Exp $ + * lookup_content_inc + * + * @author spider <spider@steelsun.com> + * @package liberty + * @subpackage functions + */ -// $Header: /cvsroot/bitweaver/_bit_liberty/preview.php,v 1.2 2007/05/30 21:27:28 spiderr Exp $ - -// Copyright( c ) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. -// All Rights Reserved. See copyright.txt for details and a complete list of authors. -// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. +/** + * Required setup + */ global $gLightweightScan; $gLightwieightScan = TRUE; require_once( '../bit_setup_inc.php' ); diff --git a/redirect.php b/redirect.php index bf23627..6bc4c00 100644 --- a/redirect.php +++ b/redirect.php @@ -1,4 +1,16 @@ <?php +/** + * @version $Header: /cvsroot/bitweaver/_bit_liberty/redirect.php,v 1.3 2007/06/22 09:17:13 lsces Exp $ + * lookup_content_inc + * + * @author spider <spider@steelsun.com> + * @package liberty + * @subpackage functions + */ + +/** + * Required setup + */ require_once('../bit_setup_inc.php'); if (!empty($_REQUEST['q'])) { bit_redirect($_REQUEST['q'] ); |
