ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilObjObjectFolder.php
Go to the documentation of this file.
1<?php
2
19declare(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}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
Class ilObjObjectFolder.
__construct(int $id, bool $call_by_reference=true)
Class ilObject Basic functions for all objects.
bool $call_by_reference
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc