11<?php
22$playgrounduser = array(
3-
3+
44 /**
55 * add default registration role to BjyAuthorize
66 *
77 */
88 'default_register_role' => 'user',
9-
9+
1010 /**
1111 * @var bool
1212 * true = create user automatically after social authentication
1313 * false = data are extracted from the social id and sent to a registration form
1414 */
1515 'createUserAutoSocial' => false,
16-
16+
1717 /**
1818 * Email Address that will appear in the 'From' of outbound emails
1919 *
2020 * Default: empty
21- */
21+ */
2222 'email_from_address' => array(
2323 'email' => 'contact@playground.gg',
2424 'name' => 'Administrateur',
2525 ),
26-
26+
2727 /**
2828 * Subject line of the email message which is
2929 * sent out when a user enters their email address
3030 *
3131 * Default: 'You requested to reset your password'
3232 */
3333 'reset_email_subject_line' => 'Réinitialisation de votre mot de passe',
34-
34+
3535 /**
3636 * Subject line of the email message which is
3737 * sent out when an admin has changed the password
@@ -40,7 +40,7 @@ $playgrounduser = array(
4040 * Default: 'Your new password'
4141 */
4242 'new_email_subject_line' => 'Votre nouveau mot de passe',
43-
43+
4444 /**
4545 * Activate the email verification on registration
4646 *
@@ -55,24 +55,24 @@ $playgrounduser = array(
5555 * Default subject : 'Merci de votre inscription'
5656 */
5757 'emailConfirmation' => true,
58-
58+
5959 /**
6060 * Subject line of the email message which is
6161 * sent out when verification on email registration
6262 * is activated
63- *
63+ *
6464 * Default: 'Vérification de votre compte'
6565 */
6666 'verificationEmailSubjectLine' => 'Vérification de votre compte',
67-
67+
6868 /**
6969 * RememberMe Model Entity Class
7070 *
7171 * Name of Entity class to use. Useful for using your own entity class
72- * instead of the default one provided. Default is ZfcUser \Entity\User.
72+ * instead of the default one provided. Default is LmcUser \Entity\User.
7373 */
7474 'remember_me_entity_class' => 'PlaygroundUser\Entity\RememberMe',
75-
75+
7676 /**
7777 * Remember me cookie expire time
7878 *
@@ -82,17 +82,17 @@ $playgrounduser = array(
8282 * Accepted values: the number of seconds the user should be remembered
8383 */
8484 'cookie_expire' => 2592000,
85-
85+
8686 /**
8787 * Drive path to the directory where user avatar will be stored
8888 */
8989 'avatar_path' => 'public' . DIRECTORY_SEPARATOR . 'media' . DIRECTORY_SEPARATOR . 'user',
90-
90+
9191 /**
9292 * Url relative path to the directory where user avatar will be stored
9393 */
9494 'avatar_url' => 'media/user',
95-
95+
9696 'social' => array(
9797 'providers' => include __DIR__.'/social.config.php',
9898 // if you want to enable logging, set 'debug_mode' to true then provide a writable file by the web server on 'debug_file'
@@ -127,28 +127,28 @@ $playgrounduser = array(
127127);
128128
129129/**
130- * ZfcUser Configuration
130+ * LmcUser Configuration
131131 *
132132 * If you have a ./config/autoload/ directory set up for your project, you can
133133 * drop this config file in it and change the values as you wish.
134134 */
135- $zfcSettings = array(
135+ $LmcSettings = array(
136136
137137 /**
138138 * Authentication Adapters
139139 *
140140 * Specify the adapters that will be used to try and authenticate the user
141141 *
142- * Default value: array containing 'ZfcUser \Authentication\Adapter\Db'
143- * Accepted values: array containing services that implement 'ZfcUser \Authentication\Adapter\ChainableAdapter'
142+ * Default value: array containing 'LmcUser \Authentication\Adapter\Db'
143+ * Accepted values: array containing services that implement 'LmcUser \Authentication\Adapter\ChainableAdapter'
144144 */
145145 'auth_adapters' => array(
146146 50 => 'PlaygroundUser\Authentication\Adapter\Cookie',
147- 100 => 'ZfcUser \Authentication\Adapter\Db'
147+ 100 => 'LmcUser \Authentication\Adapter\Db'
148148 ),
149149
150150 /**
151- * End of ZfcUser configuration
151+ * End of LmcUser configuration
152152 */
153153);
154154
@@ -157,5 +157,5 @@ $zfcSettings = array(
157157 */
158158return array(
159159 'playgrounduser' => $playgrounduser,
160- 'zfcuser ' => $zfcSettings ,
160+ 'lmcuser ' => $LmcSettings ,
161161);
0 commit comments