diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-02-20 11:27:57 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-02-20 11:27:57 +0000 |
commit | 74614e0f99221f1b137d9d9aedd3f38570430981 (patch) | |
tree | 4567445cd0da457077cac3fc828f9b7de28e120e | |
parent | ab75c7ff445bb8659293af3a39a355185221cb37 (diff) | |
download | semanticscuttle-74614e0f99221f1b137d9d9aedd3f38570430981.tar.gz semanticscuttle-74614e0f99221f1b137d9d9aedd3f38570430981.tar.bz2 |
header docblock
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@674 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r-- | src/SemanticScuttle/functions.php | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/SemanticScuttle/functions.php b/src/SemanticScuttle/functions.php index 15db022..84e9c5f 100644 --- a/src/SemanticScuttle/functions.php +++ b/src/SemanticScuttle/functions.php @@ -1,6 +1,19 @@ <?php -/* Define functions used into the application */ - +/** + * Defines some commonly used functions. + * + * SemanticScuttle - your social bookmark manager. + * + * PHP version 5. + * + * @category Bookmarking + * @package SemanticScuttle + * @author Benjamin Huynh-Kim-Bang <mensonge@users.sourceforge.net> + * @author Christian Weiske <cweiske@cweiske.de> + * @author Eric Dane <ericdane@users.sourceforge.net> + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle + */ // Converts tags: // - direction = out: convert spaces to underscores; @@ -48,7 +61,7 @@ function filter($data, $type = NULL) { function getPerPageCount($userObject = null) { global $defaultPerPage, $defaultPerPageForAdmins; - + if (isset($defaultPerPageForAdmins) && $userObject != null && $userObject->isAdmin() ) { |