Define get_uid() in kolab_storage_folder_api base class (#5023)
This commit is contained in:
parent
97ea819b8a
commit
562ed98bd2
1 changed files with 10 additions and 0 deletions
|
@ -293,6 +293,16 @@ abstract class kolab_storage_folder_api
|
||||||
return join('', (array)$rights);
|
return join('', (array)$rights);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper method to extract folder UID metadata
|
||||||
|
*
|
||||||
|
* @return string Folder's UID
|
||||||
|
*/
|
||||||
|
public function get_uid()
|
||||||
|
{
|
||||||
|
// To be implemented by extending classes
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check activation status of this folder
|
* Check activation status of this folder
|
||||||
|
|
Loading…
Add table
Reference in a new issue