Documents at 65%. Display folders and documents, no pagination yet.. Posible to create Folders and upload external files. Working on Download, search

This commit is contained in:
Hugo Loza
2010-12-17 22:30:02 +00:00
parent 09a7399838
commit 779a87e046
121 changed files with 3746 additions and 1287 deletions

View File

@@ -63,6 +63,24 @@ class Users extends BaseUsers {
throw($e);
}
}
public function userExists($UsrUid)
{
try {
$oRow = UsersPeer::retrieveByPK( $UsrUid );
if (!is_null($oRow))
{
return true;
}
else {
return false;
}
}
catch (Exception $oError) {
return false;
}
}
public function load($UsrUid)
{
try {