ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjObjectFolder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
32  public function __construct(int $id, bool $call_by_reference = true)
33  {
34  $this->type = "objf";
36  }
37 
38 
45  public function delete(): bool
46  {
47  // DISABLED
48  return false;
49 
50  // always call parent delete function first!!
51  if (!parent::delete()) {
52  return false;
53  }
54 
55  // put here objectfolder specific stuff
56 
57  // always call parent delete function at the end!!
58  return true;
59  }
60 }
Class ilObjObjectFolder.
bool $call_by_reference
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
__construct(int $id, bool $call_by_reference=true)