Lines Matching refs:this

26         $controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 'handle_start');
27 $controller->register_hook('HTML_LOGINFORM_OUTPUT', 'BEFORE', $this, 'handle_loginform');
28 …$controller->register_hook('HTML_UPDATEPROFILEFORM_OUTPUT', 'BEFORE', $this, 'handle_profileform');
29 $controller->register_hook('FORM_LOGIN_OUTPUT', 'BEFORE', $this, 'handle_loginform');
30 … $controller->register_hook('FORM_UPDATEPROFILE_OUTPUT', 'BEFORE', $this, 'handle_profileform');
31 $controller->register_hook('AUTH_USER_CHANGE', 'BEFORE', $this, 'handle_usermod');
32 $controller->register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, 'handle_dologin');
51 $this->restoreSessionEnvironment();
54 $this->updateGroups();
55 $this->startOAuthLogin();
64 if ($this->startsWith($acl[1], "@eve%2d")) {
75 if ($this->startsWith($acl[1], "@eve%2d") && $acl[2] != 0) {
212 if ($this->startsWith($group, helper_plugin_evesso::CORPORATION_PREFIX)) {
213 $corp = $this->replaceFirst($group, helper_plugin_evesso::CORPORATION_PREFIX);
215 if ($this->startsWith($group, helper_plugin_evesso::ALLIANCE_PREFIX)) {
216 $alliance = $this->replaceFirst($group, helper_plugin_evesso::ALLIANCE_PREFIX);
218 if ($this->startsWith($group, helper_plugin_evesso::FACTION_PREFIX)) {
219 $faction = $this->replaceFirst($group, helper_plugin_evesso::FACTION_PREFIX);
223 $this->insertTextInput($form, $pos, $faction, $this->getLang('faction'));
226 $this->insertTextInput($form, $pos, $alliance, $this->getLang('alliance'));
229 $this->insertTextInput($form, $pos, $corp, $this->getLang('corporation'));
239 if ($this->startsWith($group, helper_plugin_evesso::CORPORATION_PREFIX)) {
240 $corp = $this->replaceFirst($group, helper_plugin_evesso::CORPORATION_PREFIX);
242 if ($this->startsWith($group, helper_plugin_evesso::ALLIANCE_PREFIX)) {
243 $alliance = $this->replaceFirst($group, helper_plugin_evesso::ALLIANCE_PREFIX);
245 if ($this->startsWith($group, helper_plugin_evesso::FACTION_PREFIX)) {
246 $faction = $this->replaceFirst($group, helper_plugin_evesso::FACTION_PREFIX);
251 …$form->insertElement($pos, form_makeTextField($faction, $faction, $this->getLang('faction'), '', '…
254 …$form->insertElement($pos, form_makeTextField($alliance, $alliance, $this->getLang('alliance'), ''…
257 …$form->insertElement($pos, form_makeTextField($corp, $corp, $this->getLang('corporation'), '', 'bl…
321 $html = $this->service_html($service);
323 $html .= $this->service_html($service);
331 $form->addFieldsetOpen($this->getLang('loginwith'), ++$pos);
335 …$form->insertElement(++$pos, form_openfieldset(array('_legend' => $this->getLang('loginwith'), 'cl…
345 if ($this->getConf('login-button') == 'Button') {
347 } elseif ($this->getConf('login-button') == 'LargeLight') {
349 } elseif ($this->getConf('login-button') == 'LargeDark') {
351 } elseif ($this->getConf('login-button') == 'SmallLight') {
353 } elseif ($this->getConf('login-button') == 'SmallDark') {
356 $html .= $this->getLang('loginButton');
379 $lang['btn_login'] = $this->getLang('loginButton');