mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-12-06 11:22:41 +01:00
implemented organization provider registration
This commit is contained in:
parent
c0e2ec9d2e
commit
02bb8a330f
3 changed files with 82 additions and 0 deletions
15
lib/OrganisationProvider/OrganisationProvider.php
Normal file
15
lib/OrganisationProvider/OrganisationProvider.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\OrganizationFolders\OrganisationProvider;
|
||||
|
||||
abstract class OrganisationProvider {
|
||||
protected $id;
|
||||
|
||||
public function getId() {
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
// TODO: functions to access organisation structure
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue