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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user