@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | * for multiple paths. |
| 37 | 37 | * example https://github.com/doctrine/DoctrineORMModule |
| 38 | 38 | */ |
| 39 | - 'paths' => [ __DIR__ . '/../src/Auth/Entity'], |
|
| 39 | + 'paths' => [__DIR__.'/../src/Auth/Entity'], |
|
| 40 | 40 | ], |
| 41 | 41 | ], |
| 42 | 42 | ], |
@@ -114,13 +114,13 @@ discard block |
||
| 114 | 114 | 'hybridauth' => [ |
| 115 | 115 | "Facebook" => [ |
| 116 | 116 | "enabled" => true, |
| 117 | - "keys" => [ "id" => "", "secret" => "" ], |
|
| 117 | + "keys" => ["id" => "", "secret" => ""], |
|
| 118 | 118 | "scope" => 'email, user_about_me, user_birthday, user_hometown, user_website', |
| 119 | 119 | "display" => 'popup', |
| 120 | 120 | ], |
| 121 | 121 | "LinkedIn" => [ |
| 122 | 122 | "enabled" => true, |
| 123 | - "keys" => [ "key" => "", "secret" => "" ], |
|
| 123 | + "keys" => ["key" => "", "secret" => ""], |
|
| 124 | 124 | ], |
| 125 | 125 | "XING" => [ |
| 126 | 126 | "enabled" => true, |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | 'class' => 'Hybrid_Providers_XING', |
| 131 | 131 | 'path' => __FILE__, |
| 132 | 132 | ], |
| 133 | - "keys" => [ "key" => "", "secret" => "" ], |
|
| 133 | + "keys" => ["key" => "", "secret" => ""], |
|
| 134 | 134 | ], |
| 135 | 135 | "Github" => [ |
| 136 | 136 | "enabled" => true, |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | 'class' => 'Hybrid_Providers_Github', |
| 141 | 141 | 'path' => __FILE__, |
| 142 | 142 | ], |
| 143 | - "keys" => [ "key" => "", "secret" => "" ], |
|
| 143 | + "keys" => ["key" => "", "secret" => ""], |
|
| 144 | 144 | ], |
| 145 | 145 | |
| 146 | 146 | ], |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | 'translation_file_patterns' => [ |
| 244 | 244 | [ |
| 245 | 245 | 'type' => 'gettext', |
| 246 | - 'base_dir' => __DIR__ . '/../language', |
|
| 246 | + 'base_dir' => __DIR__.'/../language', |
|
| 247 | 247 | 'pattern' => '%s.mo', |
| 248 | 248 | ], |
| 249 | 249 | ], |
@@ -252,30 +252,30 @@ discard block |
||
| 252 | 252 | // Configure the view service manager |
| 253 | 253 | 'view_manager' => [ |
| 254 | 254 | 'template_map' => [ |
| 255 | - 'form/auth/contact.form' => __DIR__ . '/../view/form/contact.form.phtml', |
|
| 256 | - 'form/auth/contact.view' => __DIR__ . '/../view/form/contact.view.phtml', |
|
| 257 | - 'form/auth/status.form' => __DIR__ . '/../view/form/status.form.phtml', |
|
| 258 | - 'form/auth/status.view' => __DIR__ . '/../view/form/status.view.phtml', |
|
| 259 | - 'auth/error/social-profiles-unconfigured' => __DIR__ . '/../view/error/social-profiles-unconfigured.phtml', |
|
| 260 | - 'auth/form/user-info-container' => __DIR__ . '/../view/form/user-info-container.phtml', |
|
| 261 | - 'auth/form/user-status-container' => __DIR__ . '/../view/form/user-status-container.phtml', |
|
| 262 | - 'auth/form/userselect' => __DIR__ . '/../view/form/userselect.phtml', |
|
| 263 | - 'auth/form/social-profiles-fieldset' => __DIR__ . '/../view/form/social-profiles-fieldset.phtml', |
|
| 264 | - 'auth/form/social-profiles-button' => __DIR__ . '/../view/form/social-profiles-button.phtml', |
|
| 265 | - 'auth/sidebar/groups-menu' => __DIR__ . '/../view/sidebar/groups-menu.phtml', |
|
| 266 | - 'mail/first-external-login' => __DIR__ . '/../view/mail/first-external-login.phtml', |
|
| 267 | - 'mail/first-socialmedia-login' => __DIR__ . '/../view/mail/first-socialmedia-login.phtml', |
|
| 268 | - 'mail/forgotPassword' => __DIR__ . '/../view/mail/forgot-password.phtml', |
|
| 269 | - 'mail/forgotPassword.en' => __DIR__ . '/../view/mail/forgot-password.en.phtml', |
|
| 270 | - 'mail/register' => __DIR__ . '/../view/mail/register.phtml', |
|
| 271 | - 'auth/mail/new-registration' => __DIR__ . '/../view/mail/new-registration.phtml', |
|
| 272 | - 'auth/mail/new-registration.de' => __DIR__ . '/../view/mail/new-registration.de.phtml', |
|
| 273 | - 'auth/mail/user-confirmed' => __DIR__ . '/../view/mail/user-confirmed.phtml', |
|
| 274 | - 'auth/mail/user-confirmed.de' => __DIR__ . '/../view/mail/user-confirmed.de.phtml', |
|
| 255 | + 'form/auth/contact.form' => __DIR__.'/../view/form/contact.form.phtml', |
|
| 256 | + 'form/auth/contact.view' => __DIR__.'/../view/form/contact.view.phtml', |
|
| 257 | + 'form/auth/status.form' => __DIR__.'/../view/form/status.form.phtml', |
|
| 258 | + 'form/auth/status.view' => __DIR__.'/../view/form/status.view.phtml', |
|
| 259 | + 'auth/error/social-profiles-unconfigured' => __DIR__.'/../view/error/social-profiles-unconfigured.phtml', |
|
| 260 | + 'auth/form/user-info-container' => __DIR__.'/../view/form/user-info-container.phtml', |
|
| 261 | + 'auth/form/user-status-container' => __DIR__.'/../view/form/user-status-container.phtml', |
|
| 262 | + 'auth/form/userselect' => __DIR__.'/../view/form/userselect.phtml', |
|
| 263 | + 'auth/form/social-profiles-fieldset' => __DIR__.'/../view/form/social-profiles-fieldset.phtml', |
|
| 264 | + 'auth/form/social-profiles-button' => __DIR__.'/../view/form/social-profiles-button.phtml', |
|
| 265 | + 'auth/sidebar/groups-menu' => __DIR__.'/../view/sidebar/groups-menu.phtml', |
|
| 266 | + 'mail/first-external-login' => __DIR__.'/../view/mail/first-external-login.phtml', |
|
| 267 | + 'mail/first-socialmedia-login' => __DIR__.'/../view/mail/first-socialmedia-login.phtml', |
|
| 268 | + 'mail/forgotPassword' => __DIR__.'/../view/mail/forgot-password.phtml', |
|
| 269 | + 'mail/forgotPassword.en' => __DIR__.'/../view/mail/forgot-password.en.phtml', |
|
| 270 | + 'mail/register' => __DIR__.'/../view/mail/register.phtml', |
|
| 271 | + 'auth/mail/new-registration' => __DIR__.'/../view/mail/new-registration.phtml', |
|
| 272 | + 'auth/mail/new-registration.de' => __DIR__.'/../view/mail/new-registration.de.phtml', |
|
| 273 | + 'auth/mail/user-confirmed' => __DIR__.'/../view/mail/user-confirmed.phtml', |
|
| 274 | + 'auth/mail/user-confirmed.de' => __DIR__.'/../view/mail/user-confirmed.de.phtml', |
|
| 275 | 275 | ], |
| 276 | 276 | |
| 277 | 277 | 'template_path_stack' => [ |
| 278 | - 'Auth' => __DIR__ . '/../view', |
|
| 278 | + 'Auth' => __DIR__.'/../view', |
|
| 279 | 279 | ], |
| 280 | 280 | ], |
| 281 | 281 | |
@@ -341,9 +341,9 @@ discard block |
||
| 341 | 341 | 'service' => 'Core/EventManager', |
| 342 | 342 | 'event' => AuthEvent::class, |
| 343 | 343 | 'listeners' => [ |
| 344 | - Listener\MailForgotPassword::class => [ AuthEvent::EVENT_AUTH_NEWPASSWORD, 10, true ], |
|
| 344 | + Listener\MailForgotPassword::class => [AuthEvent::EVENT_AUTH_NEWPASSWORD, 10, true], |
|
| 345 | 345 | Listener\SendRegistrationNotifications::class => [ |
| 346 | - [ AuthEvent::EVENT_USER_REGISTERED, AuthEvent::EVENT_USER_CONFIRMED ], |
|
| 346 | + [AuthEvent::EVENT_USER_REGISTERED, AuthEvent::EVENT_USER_CONFIRMED], |
|
| 347 | 347 | true |
| 348 | 348 | ], |
| 349 | 349 | ], |