ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
Js.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
21 
27 {
35  private $batch;
36 
43  public function __construct(string $content, string $version, bool $add_version_number = true, int $batch = 2)
44  {
45  parent::__construct($content, $version);
46  $this->add_version_number = $add_version_number;
47  $this->batch = $batch;
48  }
49 
53  public function addVersionNumber() : bool
54  {
56  }
57 
61  public function getBatch() : int
62  {
63  return $this->batch;
64  }
65 }
__construct(string $content, string $version, bool $add_version_number=true, int $batch=2)
Js constructor.
Definition: Js.php:43
__construct(Container $dic, ilPlugin $plugin)