diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-03-20 22:15:34 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-03-20 22:15:34 +0100 |
commit | bc178983b370ed005d569d70b4629e3181acc522 (patch) | |
tree | a7d5e99d85063641415b71f1b4160b3fb85a505a /src/SemanticScuttle/Model/UserArray.php | |
parent | 8146646a0e1c7535e62aeebab049f7b1740c86ae (diff) | |
parent | 975809a8347929c9eae9c6a8bf3beb8d92af63ef (diff) | |
download | semanticscuttle-bc178983b370ed005d569d70b4629e3181acc522.tar.gz semanticscuttle-bc178983b370ed005d569d70b4629e3181acc522.tar.bz2 |
Merge branch 'master' into jquery
Conflicts:
doc/ChangeLog
Diffstat (limited to 'src/SemanticScuttle/Model/UserArray.php')
-rw-r--r-- | src/SemanticScuttle/Model/UserArray.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/SemanticScuttle/Model/UserArray.php b/src/SemanticScuttle/Model/UserArray.php new file mode 100644 index 0000000..a0d9c9b --- /dev/null +++ b/src/SemanticScuttle/Model/UserArray.php @@ -0,0 +1,41 @@ +<?php +/** + * SemanticScuttle - your social bookmark manager. + * + * PHP version 5. + * + * @category Bookmarking + * @package SemanticScuttle + * @author Christian Weiske <cweiske@cweiske.de> + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle + */ + +/** + * Mostly static methods that help working with a user row array from database. + * + * @category Bookmarking + * @package SemanticScuttle + * @author Christian Weiske <cweiske@cweiske.de> + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle + */ +class SemanticScuttle_Model_UserArray +{ + /** + * Returns full user name as specified in the profile if it is set, + * otherwise the nickname/loginname is returned. + * + * @param array $row User row array from database + * + * @return string Full name or username + */ + public static function getName($row) + { + if (isset($row['name']) && $row['name']) { + return $row['name']; + } + return $row['username']; + } +} +?>
\ No newline at end of file |