ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilContainerAccess.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2017 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 
15 {
21  public function canBeDelivered(ilWACPath $ilWACPath)
22  {
23  global $DIC;
24 
25  $access = $DIC->access();
26 
27  preg_match("/\\/obj_([\\d]*)\\//uism", $ilWACPath->getPath(), $results);
28  foreach (ilObject2::_getAllReferences($results[1]) as $ref_id) {
29  if ($access->checkAccess('visible', '', $ref_id) || $access->checkAccess('read', '', $ref_id)) {
30  return true;
31  }
32  }
33 
34  return false;
35  }
36 }
Class ilContainerAccess.
canBeDelivered(ilWACPath $ilWACPath)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getAllReferences($a_id)
$results
Class ilWACCheckingClass.
$DIC
Definition: xapitoken.php:46