| 1 | <?php |
||
| 14 | final class Organisations |
||
| 15 | { |
||
| 16 | const ORG = 'single_organization'; |
||
| 17 | const MEMBERS = 'organization_members'; |
||
| 18 | const BASEPROFILE = Organisations::ORG; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param $id |
||
| 22 | * @param bool $cache |
||
| 23 | * @param bool $raw |
||
| 24 | * |
||
| 25 | * @return bool|Organisation |
||
| 26 | */ |
||
| 27 | 3 | public static function findOrg($id, $cache = false, $raw = false) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @param $id |
||
| 35 | * @param bool $cache |
||
| 36 | * @param bool $raw |
||
| 37 | * |
||
| 38 | * @return bool|Store |
||
| 39 | */ |
||
| 40 | 3 | public static function findMembers($id, $cache = false, $raw = false) |
|
| 45 | } |