Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
elitedivision
amos-social-auth
Commits
5aab6461
Commit
5aab6461
authored
Oct 09, 2020
by
waltermazza
Browse files
Arter namespace
parent
59d6a788
Changes
31
Show whitespace changes
Inline
Side-by-side
src/models/SocialAuthServices.php
View file @
5aab6461
...
...
@@ -5,20 +5,20 @@
* OPEN 2.0
*
*
* @package
elitedivision
\amos\socialauth\models
* @package
arter
\amos\socialauth\models
* @category CategoryName
* @author Elite Division S.r.l.
*/
namespace
elitedivision
\amos\socialauth\models
;
namespace
arter
\amos\socialauth\models
;
use
elitedivision
\amos\core\record\Record
;
use
elitedivision
\amos\socialauth\Module
;
use
arter
\amos\core\record\Record
;
use
arter
\amos\socialauth\Module
;
/**
* Class SocialAuthServices
* @package
elitedivision
\amos\socialauth\models
* @package
arter
\amos\socialauth\models
*
* @property integer $id
* @property integer $social_users_id
...
...
@@ -31,7 +31,7 @@ use elitedivision\amos\socialauth\Module;
* @property string $service_id
*
* @property SocialAuthUsers $socialUser
* @property \
elitedivision
\amos\core\user\User $user
* @property \
arter
\amos\core\user\User $user
*/
class
SocialAuthServices
extends
Record
{
...
...
@@ -93,6 +93,6 @@ class SocialAuthServices extends Record
*/
public
function
getUser
()
{
return
$this
->
hasOne
(
\
elitedivision
\amos\core\user\User
::
className
(),
[
'id'
=>
'user_id'
])
->
via
(
'socialUser'
);
return
$this
->
hasOne
(
\
arter
\amos\core\user\User
::
className
(),
[
'id'
=>
'user_id'
])
->
via
(
'socialUser'
);
}
}
\ No newline at end of file
src/models/SocialAuthUsers.php
View file @
5aab6461
...
...
@@ -5,16 +5,16 @@
* OPEN 2.0
*
*
* @package
elitedivision
\amos\socialauth\models
* @package
arter
\amos\socialauth\models
* @category CategoryName
* @author Elite Division S.r.l.
*/
namespace
elitedivision
\amos\socialauth\models
;
namespace
arter
\amos\socialauth\models
;
use
elitedivision
\amos\core\record\Record
;
use
elitedivision
\amos\core\user\User
;
use
elitedivision
\amos\socialauth\Module
;
use
arter
\amos\core\record\Record
;
use
arter
\amos\core\user\User
;
use
arter
\amos\socialauth\Module
;
/**
* @property string $id ID
...
...
src/models/SocialIdmUser.php
View file @
5aab6461
...
...
@@ -4,16 +4,16 @@
* Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
* OPEN 2.0
*
* @package
Open20Package
* @package
arter
* @category CategoryName
* @author Elite Division S.r.l.
*/
namespace
elitedivision
\amos\socialauth\models
;
namespace
arter
\amos\socialauth\models
;
use
Yii
;
use
yii\helpers\ArrayHelper
;
use
elitedivision
\amos\core\user\User
;
use
arter
\amos\core\user\User
;
/**
* This is the model class for table "social_idm_user".
...
...
src/utility/SocialAuthUtility.php
View file @
5aab6461
...
...
@@ -5,18 +5,18 @@
* OPEN 2.0
*
*
* @package
elitedivision
\amos\socialauth\utility
* @package
arter
\amos\socialauth\utility
* @category CategoryName
* @author Elite Division S.r.l.
*/
namespace
elitedivision
\amos\socialauth\utility
;
namespace
arter
\amos\socialauth\utility
;
use
elitedivision
\amos\admin\models\UserProfile
;
use
arter
\amos\admin\models\UserProfile
;
/**
* Class SocialAuthUtility
* @package
elitedivision
\amos\socialauth\utility
* @package
arter
\amos\socialauth\utility
*/
class
SocialAuthUtility
{
...
...
src/views/shibboleth/ask-signup.php
View file @
5aab6461
...
...
@@ -4,12 +4,12 @@
* Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
* OPEN 2.0
*
* @package
Open20Package
* @package
arter
* @category CategoryName
* @author Elite Division S.r.l.
*/
use
elitedivision
\amos\socialauth\Module
;
use
arter
\amos\socialauth\Module
;
use
yii\helpers\Html
;
/**
...
...
src/views/shibboleth/ask-which-user.php
View file @
5aab6461
...
...
@@ -5,16 +5,16 @@
* OPEN 2.0
*
*
* @package
elitedivision
\amos\socialauth\views\shibboleth
* @package
arter
\amos\socialauth\views\shibboleth
* @category CategoryName
* @author Elite Division S.r.l.
*/
use
elitedivision
\amos\admin\models\UserProfile
;
use
elitedivision
\amos\core\forms\ActiveForm
;
use
elitedivision
\amos\core\forms\editors\Select
;
use
elitedivision
\amos\socialauth\Module
;
use
elitedivision
\amos\socialauth\utility\SocialAuthUtility
;
use
arter
\amos\admin\models\UserProfile
;
use
arter
\amos\core\forms\ActiveForm
;
use
arter
\amos\core\forms\editors\Select
;
use
arter
\amos\socialauth\Module
;
use
arter
\amos\socialauth\utility\SocialAuthUtility
;
use
yii\helpers\Html
;
/**
...
...
src/views/shibboleth/fullsize/ask-signup.php
View file @
5aab6461
...
...
@@ -4,12 +4,12 @@
* Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
* OPEN 2.0
*
* @package
Open20Package
* @package
arter
* @category CategoryName
* @author Elite Division S.r.l.
*/
use
elitedivision
\amos\socialauth\Module
;
use
arter
\amos\socialauth\Module
;
use
yii\helpers\Html
;
/**
...
...
src/views/shibboleth/fullsize/ask-which-user.php
View file @
5aab6461
...
...
@@ -5,16 +5,16 @@
* OPEN 2.0
*
*
* @package
elitedivision
\amos\socialauth\views\shibboleth
* @package
arter
\amos\socialauth\views\shibboleth
* @category CategoryName
* @author Elite Division S.r.l.
*/
use
elitedivision
\amos\admin\models\UserProfile
;
use
elitedivision
\amos\core\forms\ActiveForm
;
use
elitedivision
\amos\core\forms\editors\Select
;
use
elitedivision
\amos\socialauth\Module
;
use
elitedivision
\amos\socialauth\utility\SocialAuthUtility
;
use
arter
\amos\admin\models\UserProfile
;
use
arter
\amos\core\forms\ActiveForm
;
use
arter
\amos\core\forms\editors\Select
;
use
arter
\amos\socialauth\Module
;
use
arter
\amos\socialauth\utility\SocialAuthUtility
;
use
yii\helpers\Html
;
/**
...
...
src/views/shibboleth/fullsize/log-in.php
View file @
5aab6461
...
...
@@ -4,13 +4,13 @@
* Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
* OPEN 2.0
*
* @package
Open20Package
* @package
arter
* @category CategoryName
* @author Elite Division S.r.l.
*/
use
elitedivision
\amos\admin\models\UserProfile
;
use
elitedivision
\amos\socialauth\Module
;
use
arter
\amos\admin\models\UserProfile
;
use
arter
\amos\socialauth\Module
;
use
yii\helpers\Html
;
/**
...
...
src/views/shibboleth/log-in.php
View file @
5aab6461
...
...
@@ -4,13 +4,13 @@
* Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
* OPEN 2.0
*
* @package
Open20Package
* @package
arter
* @category CategoryName
* @author Elite Division S.r.l.
*/
use
elitedivision
\amos\admin\models\UserProfile
;
use
elitedivision
\amos\socialauth\Module
;
use
arter
\amos\admin\models\UserProfile
;
use
arter
\amos\socialauth\Module
;
use
yii\helpers\Html
;
/**
...
...
src/views/shibboleth/mobile.php
View file @
5aab6461
...
...
@@ -4,7 +4,7 @@
* Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
* OPEN 2.0
*
* @package
Open20Package
* @package
arter
* @category CategoryName
* @author Elite Division S.r.l.
*/
...
...
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment