1 | <?php |
||
22 | class Module extends BaseModule |
||
23 | { |
||
24 | /** |
||
25 | * Login url. |
||
26 | * |
||
27 | * @var null|string|array |
||
28 | */ |
||
29 | public $loginUrl = null; |
||
30 | |||
31 | /** |
||
32 | * Array of roles to module access. |
||
33 | * |
||
34 | * @var array |
||
35 | */ |
||
36 | public $accessRoles = ['@']; |
||
37 | |||
38 | /** |
||
39 | * View component to render content. |
||
40 | * |
||
41 | * @var View |
||
42 | */ |
||
43 | private $_view = null; |
||
44 | |||
45 | /** |
||
46 | * Auth manager. |
||
47 | * |
||
48 | * @var ManagerInterface |
||
49 | */ |
||
50 | private $_authManager; |
||
51 | |||
52 | /** |
||
53 | * Module translations. |
||
54 | * |
||
55 | * @var array|null |
||
56 | */ |
||
57 | private static $_translations = null; |
||
58 | |||
59 | /** |
||
60 | * @inheritdoc |
||
61 | */ |
||
62 | public function init() |
||
63 | { |
||
64 | parent::init(); |
||
65 | |||
66 | $this->_authManager = Yii::$app->authManager; |
||
67 | |||
68 | if (null === $this->_authManager) { |
||
69 | throw new InvalidConfigException('The authManager is not defined.'); |
||
70 | } |
||
71 | |||
72 | if (!$this->_authManager instanceof ManagerInterface) { |
||
73 | throw new InvalidConfigException('The authManager must be implemented from yii\rbac\ManagerInterface.'); |
||
74 | } |
||
75 | |||
76 | Yii::setAlias('@rbac', static::getBaseDir()); |
||
77 | |||
78 | if (null !== $this->loginUrl && method_exists(Yii::$app, 'getUser')) { |
||
79 | Yii::$app->getUser()->loginUrl = $this->loginUrl; |
||
|
|||
80 | } |
||
81 | |||
82 | self::registerTranslations(); |
||
83 | |||
84 | /** |
||
85 | * Set Rbac validate component |
||
86 | */ |
||
87 | $this->setComponents( |
||
88 | ArrayHelper::merge( |
||
89 | $this->getRbacValidateComponentConfig(), |
||
90 | $this->components |
||
91 | ) |
||
92 | ); |
||
93 | |||
94 | /** |
||
95 | * Set Profile validate component |
||
96 | */ |
||
97 | $this->setComponents( |
||
98 | ArrayHelper::merge( |
||
99 | $this->getProfileValidateComponentConfig(), |
||
100 | $this->components |
||
101 | ) |
||
102 | ); |
||
103 | } |
||
104 | |||
105 | /** |
||
106 | * Get the view. |
||
107 | * |
||
108 | * @return View |
||
109 | */ |
||
110 | public function getView() |
||
111 | { |
||
112 | if (null === $this->_view) { |
||
113 | $this->_view = $this->get('view'); |
||
114 | } |
||
115 | |||
116 | return $this->_view; |
||
117 | } |
||
118 | |||
119 | /** |
||
120 | * Returns module root directory. |
||
121 | * |
||
122 | * @return string |
||
123 | */ |
||
124 | public static function getBaseDir(): string |
||
125 | { |
||
126 | return __DIR__; |
||
127 | } |
||
128 | |||
129 | /** |
||
130 | * Module translator. |
||
131 | * |
||
132 | * @param $category |
||
133 | * @param $message |
||
134 | * @param array $params |
||
135 | * @param null $language |
||
136 | * |
||
137 | * @return string |
||
138 | */ |
||
139 | public static function t($category, $message, $params = [], $language = null) |
||
140 | { |
||
141 | if (null === self::$_translations) { |
||
142 | self::registerTranslations(); |
||
143 | } |
||
144 | |||
145 | return Yii::t('modules/rbac/' . $category, $message, $params, $language); |
||
146 | } |
||
147 | |||
148 | /** |
||
149 | * Set i18N component. |
||
150 | * |
||
151 | * @return void |
||
152 | */ |
||
153 | private static function registerTranslations(): void |
||
154 | { |
||
155 | self::$_translations = [ |
||
156 | 'modules/rbac/*' => [ |
||
157 | 'class' => 'yii\i18n\PhpMessageSource', |
||
158 | 'forceTranslation' => true, |
||
159 | 'sourceLanguage' => Yii::$app->language, |
||
160 | 'basePath' => '@rbac/messages', |
||
161 | 'fileMap' => [ |
||
162 | 'modules/rbac/main' => 'main.php', |
||
163 | 'modules/rbac/roles' => 'roles.php', |
||
164 | 'modules/rbac/permissions' => 'permissions.php', |
||
165 | 'modules/rbac/profiles' => 'profiles.php', |
||
166 | 'modules/rbac/rbac' => 'rbac.php', |
||
167 | ], |
||
168 | ] |
||
169 | ]; |
||
170 | |||
171 | Yii::$app->i18n->translations = ArrayHelper::merge( |
||
172 | self::$_translations, |
||
173 | Yii::$app->i18n->translations |
||
174 | ); |
||
175 | } |
||
176 | |||
177 | /** |
||
178 | * Rbac validate component config. |
||
179 | * |
||
180 | * @return array |
||
181 | */ |
||
182 | private function getRbacValidateComponentConfig(): array |
||
183 | { |
||
184 | return [ |
||
185 | 'rbac-validate-component' => [ |
||
186 | 'class' => RbacValidateComponent::class, |
||
187 | 'authManager' => $this->_authManager, |
||
188 | ] |
||
189 | ]; |
||
190 | } |
||
191 | |||
192 | /** |
||
193 | * Profile validate component config. |
||
194 | * |
||
195 | * @return array |
||
196 | */ |
||
197 | private function getProfileValidateComponentConfig(): array |
||
206 | } |
||
207 |
It seems like the method you are trying to call exists only in some of the possible types.
Let’s take a look at an example:
Available Fixes
Add an additional type-check:
Only allow a single type to be passed if the variable comes from a parameter: