1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* Managers factory.
|
|
|
19 |
*
|
|
|
20 |
* @package mod_forum
|
|
|
21 |
* @copyright 2019 Ryan Wyllie <ryan@moodle.com>
|
|
|
22 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
namespace mod_forum\local\factories;
|
|
|
26 |
|
|
|
27 |
defined('MOODLE_INTERNAL') || die();
|
|
|
28 |
|
|
|
29 |
global $CFG;
|
|
|
30 |
require_once($CFG->dirroot . '/rating/lib.php');
|
|
|
31 |
|
|
|
32 |
use mod_forum\local\entities\forum as forum_entity;
|
|
|
33 |
use mod_forum\local\managers\capability as capability_manager;
|
|
|
34 |
use rating_manager;
|
|
|
35 |
|
|
|
36 |
/**
|
|
|
37 |
* Managers factory.
|
|
|
38 |
*
|
|
|
39 |
* See:
|
|
|
40 |
* https://designpatternsphp.readthedocs.io/en/latest/Creational/SimpleFactory/README.html
|
|
|
41 |
*
|
|
|
42 |
* @copyright 2019 Ryan Wyllie <ryan@moodle.com>
|
|
|
43 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
44 |
*/
|
|
|
45 |
class manager {
|
|
|
46 |
/** @var legacy_data_mapper $legacydatamapperfactory Legacy data mapper factory */
|
|
|
47 |
private $legacydatamapperfactory;
|
|
|
48 |
|
|
|
49 |
/**
|
|
|
50 |
* Constructor.
|
|
|
51 |
*
|
|
|
52 |
* @param legacy_data_mapper $legacydatamapperfactory Legacy data mapper factory
|
|
|
53 |
*/
|
|
|
54 |
public function __construct(legacy_data_mapper $legacydatamapperfactory) {
|
|
|
55 |
$this->legacydatamapperfactory = $legacydatamapperfactory;
|
|
|
56 |
}
|
|
|
57 |
|
|
|
58 |
/**
|
|
|
59 |
* Create a capability manager for the given forum.
|
|
|
60 |
*
|
|
|
61 |
* @param forum_entity $forum The forum to manage capabilities for
|
|
|
62 |
* @return capability_manager
|
|
|
63 |
*/
|
|
|
64 |
public function get_capability_manager(forum_entity $forum) {
|
|
|
65 |
return new capability_manager(
|
|
|
66 |
$forum,
|
|
|
67 |
$this->legacydatamapperfactory->get_forum_data_mapper(),
|
|
|
68 |
$this->legacydatamapperfactory->get_discussion_data_mapper(),
|
|
|
69 |
$this->legacydatamapperfactory->get_post_data_mapper()
|
|
|
70 |
);
|
|
|
71 |
}
|
|
|
72 |
|
|
|
73 |
/**
|
|
|
74 |
* Create a rating manager.
|
|
|
75 |
*
|
|
|
76 |
* @return rating_manager
|
|
|
77 |
*/
|
|
|
78 |
public function get_rating_manager(): rating_manager {
|
|
|
79 |
return new rating_manager();
|
|
|
80 |
}
|
|
|
81 |
}
|