ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilUnitTestPageManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 class ilUnitTestPageManager implements \ILIAS\COPage\Page\PageManagerInterface
25 {
27 
28  public function __construct()
29  {
30  }
31 
32  public function mockGet(
33  ilPageObject $page_object
34  ) {
35  $this->test_get = $page_object;
36  }
37 
38  public function get(
39  string $parent_type,
40  int $id = 0,
41  int $old_nr = 0,
42  string $lang = "-"
43  ): ilPageObject {
44  return $this->test_get;
45  }
46 }
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
$lang
Definition: xapiexit.php:25
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
mockGet(ilPageObject $page_object)