├── user
├── assets
│ ├── js
│ │ └── tooltip_users.js
│ ├── images
│ │ ├── live.png
│ │ ├── google.png
│ │ ├── myspace.png
│ │ ├── openid.png
│ │ ├── tumblr.png
│ │ ├── twitter.png
│ │ ├── yahoo.png
│ │ ├── facebook.png
│ │ ├── linkedin.png
│ │ ├── wordpress.png
│ │ ├── green_button.png
│ │ ├── livejournal.png
│ │ ├── no_avatar_available.jpg
│ │ └── no_avatar_available_thumb.jpg
│ └── css
│ │ ├── statistics.css
│ │ └── yum.css
├── components
│ ├── select2
│ │ ├── .gitignore
│ │ ├── assets
│ │ │ ├── select2.png
│ │ │ ├── spinner.gif
│ │ │ ├── select2x2.png
│ │ │ ├── select2-spinner.gif
│ │ │ ├── component.json
│ │ │ ├── select2_locale_it.js
│ │ │ ├── select2.jquery.json
│ │ │ └── release.sh
│ │ └── messages
│ │ │ ├── pl
│ │ │ └── select2.php
│ │ │ └── id
│ │ │ └── select2.php
│ ├── LoginWidget.php
│ ├── CsvGridView.php
│ ├── views
│ │ └── quicklogin.php
│ ├── EPasswordGenerator.php
│ └── YumUserIdentity.php
├── docs
│ ├── messages_daily_digest.txt
│ ├── messages.txt
│ ├── testing.txt
│ ├── avatar.txt
│ ├── membership.txt
│ ├── upgrade.txt
│ ├── permission_system.txt
│ ├── hybridauth.txt
│ ├── logging.txt
│ └── RESTful_api.txt
├── messages
│ └── de
│ │ ├── yum_yumTextSettings.php
│ │ ├── yum_action.php
│ │ └── yum_registration.php
├── views
│ ├── user
│ │ ├── password_expired.php
│ │ ├── message.php
│ │ ├── create.php
│ │ ├── _activation_passwordform.php
│ │ ├── confirmDeletion.php
│ │ ├── restricted_admin.php
│ │ ├── update.php
│ │ ├── index.php
│ │ ├── _resend_activation_partial.php
│ │ ├── passwordfields.php
│ │ ├── changepassword.php
│ │ ├── browse.php
│ │ ├── _tooltip.php
│ │ ├── _view.php
│ │ ├── generate_data.php
│ │ ├── foreignprofile.php
│ │ ├── resend_activation.php
│ │ └── list.php
│ ├── translation
│ │ ├── create.php
│ │ ├── update.php
│ │ ├── admin.php
│ │ └── _form.php
│ ├── layouts
│ │ ├── yum.php
│ │ └── login.php
│ ├── csv
│ │ ├── import.php
│ │ └── select.php
│ ├── statistics
│ │ └── statistics.php
│ └── install
│ │ └── success.php
├── vendors
│ └── hybridauth
│ │ ├── Hybrid
│ │ ├── index.html
│ │ ├── resources
│ │ │ ├── index.html
│ │ │ ├── openid_policy.html
│ │ │ ├── openid_xrds.xml
│ │ │ └── openid_realm.html
│ │ ├── thirdparty
│ │ │ └── index.html
│ │ ├── Providers
│ │ │ ├── OpenID.php
│ │ │ ├── AOL.php
│ │ │ ├── Instagram.php
│ │ │ ├── Steam.php
│ │ │ ├── GitHub.php
│ │ │ ├── Foursquare.php
│ │ │ └── Disqus.php
│ │ ├── User.php
│ │ ├── User_Contact.php
│ │ └── User_Activity.php
│ │ ├── index.php
│ │ └── config.php
├── models
│ ├── YumFormModel.php
│ ├── YumUserLogin.php
│ ├── YumUserChangePassword.php
│ ├── YumActiveRecord.php
│ └── YumTranslation.php
├── controllers
│ ├── YumDefaultController.php
│ ├── YumCsvController.php
│ ├── YumController.php
│ └── YumStatisticsController.php
├── commands
│ └── ImportCommand.php
└── tests
│ └── unit
│ └── RegistrationTest.php
├── .gitignore
├── friendship
├── views
│ └── friendship
│ │ ├── _view.php
│ │ ├── update.php
│ │ ├── view.php
│ │ ├── new_friends.php
│ │ ├── friends.php
│ │ ├── invitation.php
│ │ ├── admin.php
│ │ ├── _form.php
│ │ └── myfriends.php
└── FriendshipModule.php
├── membership
├── views
│ ├── membership
│ │ ├── membership_expired.php
│ │ ├── success.php
│ │ ├── buttons.php
│ │ ├── index.php
│ │ ├── orders.php
│ │ ├── view.php
│ │ ├── _form.php
│ │ ├── update.php
│ │ ├── _miniform.php
│ │ ├── admin.php
│ │ ├── order.php
│ │ └── _view.php
│ └── payment
│ │ ├── success.php
│ │ ├── create.php
│ │ ├── buttons.php
│ │ ├── update.php
│ │ ├── index.php
│ │ ├── _view.php
│ │ ├── admin.php
│ │ ├── view.php
│ │ ├── _miniform.php
│ │ └── _form.php
├── MembershipModule.php
└── models
│ └── YumPayment.php
├── usergroup
├── views
│ └── groups
│ │ ├── _participant.php
│ │ ├── create.php
│ │ ├── success.php
│ │ ├── index.php
│ │ ├── _message.php
│ │ ├── _tooltip.php
│ │ ├── _message_form.php
│ │ ├── update.php
│ │ ├── browse.php
│ │ ├── _form.php
│ │ ├── _miniform.php
│ │ ├── _view.php
│ │ ├── _search.php
│ │ ├── view.php
│ │ └── admin.php
├── UsergroupModule.php
└── models
│ ├── YumGroupParticipation.php
│ └── YumUsergroupMessage.php
├── message
├── views
│ └── message
│ │ ├── message.php
│ │ ├── message_view_forbidden.php
│ │ ├── success.php
│ │ ├── write_a_message.php
│ │ ├── messages.php
│ │ ├── new_messages_plain.php
│ │ ├── new_messages.php
│ │ ├── sent.php
│ │ ├── index.php
│ │ ├── view.php
│ │ ├── reply.php
│ │ ├── new_messages_dialog.php
│ │ └── compose.php
├── components
│ ├── views
│ │ └── messages.php
│ └── MessageWidget.php
└── MessageModule.php
├── profile
├── views
│ ├── profileComment
│ │ ├── success.php
│ │ ├── buttons.php
│ │ ├── index.php
│ │ ├── update.php
│ │ ├── create.php
│ │ ├── _view.php
│ │ ├── _miniform.php
│ │ ├── _search.php
│ │ └── admin.php
│ ├── profile
│ │ ├── admin.php
│ │ ├── profilenotallowed.php
│ │ ├── public_fields.php
│ │ ├── _form.php
│ │ ├── visits.php
│ │ ├── _search.php
│ │ ├── view.php
│ │ └── update.php
│ └── layouts
│ │ └── yumprofile.php
├── components
│ ├── views
│ │ ├── profile_visits.php
│ │ └── profile_comments.php
│ ├── ProfileCommentsWidget.php
│ └── ProfileVisitWidget.php
├── controllers
│ ├── YumProfileCommentController.php
│ └── YumPrivacysettingController.php
└── ProfileModule.php
├── role
├── views
│ ├── role
│ │ ├── create.php
│ │ ├── update.php
│ │ ├── admin.php
│ │ ├── view.php
│ │ └── _form.php
│ ├── action
│ │ ├── create.php
│ │ ├── index.php
│ │ ├── view.php
│ │ ├── _view.php
│ │ ├── update.php
│ │ ├── admin.php
│ │ └── _form.php
│ └── permission
│ │ ├── view.php
│ │ └── admin.php
├── RoleModule.php
└── models
│ ├── YumAction.php
│ └── YumRole.php
├── registration
├── views
│ └── registration
│ │ ├── activation_success.php
│ │ ├── activation_failure.php
│ │ └── recovery.php
├── models
│ ├── YumRegistration.php
│ ├── YumPasswordRecoveryForm.php
│ └── YumRegistrationForm.php
└── RegistrationModule.php
├── avatar
├── views
│ └── avatar
│ │ ├── _view.php
│ │ ├── admin.php
│ │ └── edit_avatar.php
└── AvatarModule.php
└── composer.json
/user/assets/js/tooltip_users.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/user/components/select2/.gitignore:
--------------------------------------------------------------------------------
1 | /nbproject/
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ./assets/
2 | ./runtime/
3 | *.swp
4 | *~
5 | ./nbproject
6 | .DS_Store
7 | .idea
8 |
--------------------------------------------------------------------------------
/friendship/views/friendship/_view.php:
--------------------------------------------------------------------------------
1 | %s', $data->invited->username);
3 | ?>
4 |
--------------------------------------------------------------------------------
/membership/views/membership/membership_expired.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/user/assets/images/live.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/live.png
--------------------------------------------------------------------------------
/user/docs/messages_daily_digest.txt:
--------------------------------------------------------------------------------
1 | how to use the 'daily digest' (or other time-range) feature in Yum:
2 |
3 |
4 |
--------------------------------------------------------------------------------
/user/assets/images/google.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/google.png
--------------------------------------------------------------------------------
/user/assets/images/myspace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/myspace.png
--------------------------------------------------------------------------------
/user/assets/images/openid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/openid.png
--------------------------------------------------------------------------------
/user/assets/images/tumblr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/tumblr.png
--------------------------------------------------------------------------------
/user/assets/images/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/twitter.png
--------------------------------------------------------------------------------
/user/assets/images/yahoo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/yahoo.png
--------------------------------------------------------------------------------
/user/messages/de/yum_yumTextSettings.php:
--------------------------------------------------------------------------------
1 | 'Texte bearbeiten',
4 | );
5 | ?>
6 |
--------------------------------------------------------------------------------
/user/assets/images/facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/facebook.png
--------------------------------------------------------------------------------
/user/assets/images/linkedin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/linkedin.png
--------------------------------------------------------------------------------
/user/assets/images/wordpress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/wordpress.png
--------------------------------------------------------------------------------
/user/assets/images/green_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/green_button.png
--------------------------------------------------------------------------------
/user/assets/images/livejournal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/livejournal.png
--------------------------------------------------------------------------------
/usergroup/views/groups/_participant.php:
--------------------------------------------------------------------------------
1 | renderPartial('user.views.user._view', array(
2 | 'data' => $data)); ?>
3 |
4 |
--------------------------------------------------------------------------------
/user/assets/images/no_avatar_available.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/no_avatar_available.jpg
--------------------------------------------------------------------------------
/user/components/select2/assets/select2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/components/select2/assets/select2.png
--------------------------------------------------------------------------------
/user/components/select2/assets/spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/components/select2/assets/spinner.gif
--------------------------------------------------------------------------------
/user/components/select2/assets/select2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/components/select2/assets/select2x2.png
--------------------------------------------------------------------------------
/user/assets/images/no_avatar_available_thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/assets/images/no_avatar_available_thumb.jpg
--------------------------------------------------------------------------------
/user/components/select2/assets/select2-spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thyseus/yii-user-management/HEAD/user/components/select2/assets/select2-spinner.gif
--------------------------------------------------------------------------------
/user/messages/de/yum_action.php:
--------------------------------------------------------------------------------
1 | 'Aktionen verwalten',
3 | 'Create Action' => 'Aktion hinzufügen',
4 | );
5 | ?>
6 |
--------------------------------------------------------------------------------
/user/views/user/password_expired.php:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
--------------------------------------------------------------------------------
/message/views/message/message.php:
--------------------------------------------------------------------------------
1 | pageTitle=Yum::t('Messages'); ?>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/profile/views/profileComment/success.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | 'window.location.reload()')); ?>
4 |
--------------------------------------------------------------------------------
/user/vendors/hybridauth/Hybrid/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | 403 Forbidden
4 |
5 |
6 |
7 | Directory access is forbidden.
8 |
9 |
10 |
--------------------------------------------------------------------------------
/user/vendors/hybridauth/Hybrid/resources/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | 403 Forbidden
4 |
5 |
6 |
7 | Directory access is forbidden.
8 |
9 |
10 |
--------------------------------------------------------------------------------
/user/vendors/hybridauth/Hybrid/thirdparty/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | 403 Forbidden
4 |
5 |
6 |
7 | Directory access is forbidden.
8 |
9 |
10 |
--------------------------------------------------------------------------------
/message/views/message/message_view_forbidden.php:
--------------------------------------------------------------------------------
1 | ';
5 | echo CHtml::link(Yum::t('Return to your inbox'), array('index'));
6 |
7 | ?>
8 |
--------------------------------------------------------------------------------
/user/vendors/hybridauth/Hybrid/resources/openid_policy.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | OpenID Policy
4 |
5 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/user/assets/css/statistics.css:
--------------------------------------------------------------------------------
1 | #users {float: left; width: 300px;margin: 5px 20px;}
2 | #roles {float: left; width: 300px;margin: 5px;}
3 | #profiles {float: left; width: 300px;margin: 5px 20px;}
4 | #messages {float: left; width: 300px;margin: 5px 20px;}
5 |
--------------------------------------------------------------------------------
/user/models/YumFormModel.php:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/user/components/select2/assets/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "select2",
3 | "version": "3.3.0",
4 | "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "spinner.gif"],
5 | "dependencies": {
6 | "jquery": "~1.4.4"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/role/views/role/create.php:
--------------------------------------------------------------------------------
1 | title = Yum::t('Create role');
3 |
4 | $this->breadcrumbs=array(
5 | Yum::t('Roles')=>array('index'),
6 | Yum::t('Create'));
7 |
8 | ?>
9 |
10 | renderPartial('_form', array('model'=>$model)); ?>
11 |
--------------------------------------------------------------------------------
/role/views/role/update.php:
--------------------------------------------------------------------------------
1 | title = Yum::t('Update role');
3 |
4 | $this->breadcrumbs=array(
5 | Yum::t('Roles')=>array('index'),
6 | Yum::t('Update'));
7 |
8 | ?>
9 |
10 | renderPartial('_form', array('model'=>$model)); ?>
11 |
--------------------------------------------------------------------------------
/message/views/message/success.php:
--------------------------------------------------------------------------------
1 | title = Yum::t('Your message has been sent');
3 | $this->breadcrumbs=array(
4 | Yum::t('Messages')=>array('index'),
5 | Yum::t('Success'));
6 | ?>
7 |
8 |
9 |
--------------------------------------------------------------------------------
/registration/views/registration/activation_success.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | CHtml::link(Yum::t('here'), Yum::module()->loginUrl
5 | ))); ?>
6 |
--------------------------------------------------------------------------------
/membership/views/payment/success.php:
--------------------------------------------------------------------------------
1 | The Payment has been successfully created
2 |
3 | $relation.'_done')); ?> $relation.'_create'));
4 |
--------------------------------------------------------------------------------
/user/views/translation/create.php:
--------------------------------------------------------------------------------
1 | breadcrumbs=array(
3 | Yum::t('Translation')=>array('index'),
4 | Yum::t('Create'),
5 | );
6 |
7 | ?>
8 |
9 |
10 |
11 | renderPartial('_form', array('model'=>$model)); ?>
12 |
--------------------------------------------------------------------------------
/membership/views/membership/success.php:
--------------------------------------------------------------------------------
1 | The Membership has been successfully created
2 |
3 | $relation.'_done')); ?> $relation.'_create'));
4 |
--------------------------------------------------------------------------------
/profile/views/profile/admin.php:
--------------------------------------------------------------------------------
1 | widget('zii.widgets.grid.CGridView', array(
6 | 'id'=>'profiles-grid',
7 | 'dataProvider'=>$dataProvider,
8 | 'filter'=>null,
9 | 'columns'=>$columns,
10 | )
11 | ); ?>
12 |
13 |
14 |
--------------------------------------------------------------------------------
/profile/views/profile/profilenotallowed.php:
--------------------------------------------------------------------------------
1 | title = Yum::t('Permission Denied'); ?>
2 |
8 |
--------------------------------------------------------------------------------
/usergroup/views/groups/create.php:
--------------------------------------------------------------------------------
1 | breadcrumbs=array(
3 | Yum::t('Usergroups')=>array('index'),
4 | Yum::t('Create'),
5 | );
6 |
7 | ?>
8 |
9 | title = Yum::t('Create Usergroup'); ?>
10 | renderPartial('_form', array(
12 | 'model' => $model));
13 |
14 | ?>
15 |
16 |
--------------------------------------------------------------------------------
/usergroup/views/groups/success.php:
--------------------------------------------------------------------------------
1 | $model))
3 | ?>
4 |
5 | $relation.'_done'));
7 | echo CHtml::Button(Yum::t('Add another Usergroup'), array('id' => $relation.'_create'));
8 |
--------------------------------------------------------------------------------
/avatar/views/avatar/_view.php:
--------------------------------------------------------------------------------
1 |
2 | getAvatar(true), array(
3 | '//avatar/avatar/editAvatar', 'id' => $data->id)); ?>
4 |
username, array(
5 | '//avatar/avatar/editAvatar', 'id' => $data->id)); ?>
6 |
7 |
--------------------------------------------------------------------------------
/friendship/views/friendship/update.php:
--------------------------------------------------------------------------------
1 | breadcrumbs=array(
3 | Yum::t('Friendships')=>array('index'),
4 | $model->id=>array('view','id'=>$model->id),
5 | 'Update',
6 | );
7 | ?>
8 |
9 | Update Friendship #id; ?>
10 |
11 | renderPartial('_form', array('model'=>$model)); ?>
12 |
--------------------------------------------------------------------------------
/user/views/layouts/yum.php:
--------------------------------------------------------------------------------
1 | clientScript->registerCssFile(
3 | Yii::app()->getAssetManager()->publish(
4 | Yii::getPathOfAlias('user.assets.css').'/yum.css'));
5 |
6 | $this->beginContent(Yum::module()->baseLayout);
7 |
8 | echo Yum::renderFlash();
9 |
10 | echo $content;
11 |
12 | $this->endContent();
13 | ?>
14 |
--------------------------------------------------------------------------------
/user/views/user/message.php:
--------------------------------------------------------------------------------
1 | %s ', $title);
3 | printf(' %s
', $content);
4 |
5 |
6 | if (isset($partial) && is_array($partial) && $partial != array())
7 | foreach ($partial as $p)
8 | echo (isset($p['params'])) ? $this->renderPartial($p['view'], $p['params']) : $this->renderPartial($p['view']);
9 |
10 | ?>
--------------------------------------------------------------------------------
/user/views/csv/import.php:
--------------------------------------------------------------------------------
1 |
2 | 'multipart/form-data'));
5 |
6 | echo CHtml::fileField('filename', '');
7 |
8 | echo CHtml::submitButton(Yum::t('Start import'), array('class' => 'btn'));
9 |
10 | echo CHtml::endForm();
11 | ?>
12 |
--------------------------------------------------------------------------------
/membership/views/payment/create.php:
--------------------------------------------------------------------------------
1 | breadcrumbs=array(
3 | Yum::t('Payments')=>array(Yii::t('app', 'index')),
4 | Yum::t('Create'),
5 | );
6 |
7 | ?>
8 |
9 |
10 | renderPartial('_form', array(
12 | 'model' => $model,
13 | 'buttons' => 'create'));
14 |
15 | ?>
16 |
17 |
--------------------------------------------------------------------------------
/membership/views/payment/buttons.php:
--------------------------------------------------------------------------------
1 |
2 | $url)); ?>
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/friendship/FriendshipModule.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'class'=>'FriendshipModule.controllers.YumFriendshipController'),
10 | );
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/membership/views/membership/buttons.php:
--------------------------------------------------------------------------------
1 |
2 | $url)); ?>
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/membership/views/payment/update.php:
--------------------------------------------------------------------------------
1 | breadcrumbs=array(
3 | Yum::t('Payments')=>array('index'),
4 | $model->id=>array('view','id'=>$model->id),
5 | Yii::t('app', 'Update'),
6 | );
7 |
8 | ?>
9 |
10 | : title; ?>
11 | renderPartial('_form', array(
13 | 'model'=>$model));
14 | ?>
15 |
--------------------------------------------------------------------------------
/profile/views/profileComment/buttons.php:
--------------------------------------------------------------------------------
1 |
2 | $url)); ?>
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/user/views/user/create.php:
--------------------------------------------------------------------------------
1 | title = Yum::t("Create user");
3 | $this->pageTitle = Yum::t("Create user");
4 | $this->breadcrumbs = array(
5 | Yum::t('Users') => array('index'),
6 | Yum::t('Create'));
7 |
8 | echo $this->renderPartial('_form', array(
9 | 'user'=>$user,
10 | 'passwordform'=>$passwordform,
11 | 'profile'=>isset($profile) ? $profile : null)); ?>
12 |
--------------------------------------------------------------------------------
/registration/models/YumRegistration.php:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/user/components/select2/messages/pl/select2.php:
--------------------------------------------------------------------------------
1 | 'Brak wyników szukania',
4 | 'Please enter {chars} more characters' => 'Proszę wprowadzić jeszcze {chars} znaków',
5 | 'You can only select {count} items' => 'Można wybrac tylko {count} pozycji',
6 | 'Loading more results...' => 'Ładowanie pozostałych wyników',
7 | 'Searching...' => 'Szukanie...',
8 | );
9 |
--------------------------------------------------------------------------------
/role/views/action/create.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | breadcrumbs=array(
7 | Yum::t('Actions')=>array('index'),
8 | Yum::t('Create'),
9 | );
10 |
11 | ?>
12 |
13 |
14 |
15 | renderPartial('_form', array('model'=>$model)); ?>
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/user/docs/messages.txt:
--------------------------------------------------------------------------------
1 | To enable the Message subsystem, simply enable the 'messages' module in your
2 | application configuration like this:
3 |
4 |
5 | 'modules' => array(
6 | 'message' => array(
7 | [...]
8 | ),
9 | 'user' => array(
10 | [...]
11 | )
12 | );
13 |
14 |
15 | See the file message/MessageModule.php for possible configuration options.
16 |
17 |
18 |
--------------------------------------------------------------------------------
/membership/views/membership/index.php:
--------------------------------------------------------------------------------
1 | breadcrumbs = array(
3 | Yum::t('Membership'),
4 | Yum::t('My memberships'),
5 | );
6 |
7 | $this->title = Yum::t('My memberships');
8 | echo Yum::renderFlash();
9 | ?>
10 |
11 |
12 | widget('zii.widgets.CListView', array(
13 | 'dataProvider'=>$dataProvider,
14 | 'itemView'=>'_view',
15 | )); ?>
16 |
17 |
18 |
--------------------------------------------------------------------------------
/role/views/action/index.php:
--------------------------------------------------------------------------------
1 | breadcrumbs=array(
3 | 'Actions',
4 | );
5 |
6 | $this->menu=array(
7 | array('label'=>'Create Action', 'url'=>array('create')),
8 | array('label'=>'Manage Action', 'url'=>array('admin')),
9 | );
10 | ?>
11 |
12 | Actions
13 |
14 | widget('zii.widgets.CListView', array(
15 | 'dataProvider'=>$dataProvider,
16 | 'itemView'=>'_view',
17 | )); ?>
18 |
--------------------------------------------------------------------------------
/user/views/layouts/login.php:
--------------------------------------------------------------------------------
1 |
2 | clientScript->registerCssFile(
4 | Yii::app()->getAssetManager()->publish(
5 | Yii::getPathOfAlias('user.assets.css').'/yum.css'));
6 |
7 | $this->beginContent(Yum::module()->baseLayout);
8 |
9 | Yum::renderFlash();
10 |
11 | echo $content;
12 | ?>
13 |
14 |
15 |
16 | endContent(); ?>
17 |
--------------------------------------------------------------------------------
/avatar/views/avatar/admin.php:
--------------------------------------------------------------------------------
1 | title = Yum::t('Avatar administration');
2 |
3 | $this->breadcrumbs = array(
4 | Yum::t('Users') => array('admin'),
5 | Yum::t('Avatars'));
6 |
7 | $this->widget('zii.widgets.CListView', array(
8 | 'dataProvider'=>$model->search(),
9 | 'sortableAttributes' => array('username', 'createtime', 'status', 'lastvisit', 'avatar'),
10 | 'itemView' => '_view',
11 | )); ?>
12 |
13 |
14 |
--------------------------------------------------------------------------------
/usergroup/views/groups/index.php:
--------------------------------------------------------------------------------
1 | breadcrumbs = array(
3 | Yum::t('Usergroups'),
4 | Yum::t('Browse'),
5 | );
6 |
7 | $this->title = Yum::t('Usergroups'); ?>
8 |
9 | widget('zii.widgets.CListView', array(
10 | 'dataProvider'=>$dataProvider,
11 | 'itemView'=>'_view',
12 | )); ?>
13 |
14 |
16 |
--------------------------------------------------------------------------------
/profile/views/profile/public_fields.php:
--------------------------------------------------------------------------------
1 | isNewRecord && $profile->getProfileFields()) { ?>
2 |
3 | getProfileFields() as $field) { ?>
4 |
5 | | |
6 | $field; ?> |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/registration/views/registration/activation_failure.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/user/vendors/hybridauth/Hybrid/resources/openid_xrds.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 | http://specs.openid.net/auth/2.0/return_to
9 | {RETURN_TO_URL}
10 |
11 |
12 |
--------------------------------------------------------------------------------
/user/components/LoginWidget.php:
--------------------------------------------------------------------------------
1 | title === NULL)
12 | $this->title=Yum::t('Login');
13 | parent::init();
14 | }
15 |
16 | protected function renderContent()
17 | {
18 | $this->render($this->view, array('model' => new YumUserLogin()));
19 | }
20 | }
21 | ?>
22 |
--------------------------------------------------------------------------------
/friendship/views/friendship/view.php:
--------------------------------------------------------------------------------
1 | breadcrumbs=array(
3 | 'Groups'=>array('index'),
4 | );
5 | ?>
6 |
7 | View Friendship #id; ?>
8 |
9 | widget('zii.widgets.CDetailView', array(
10 | 'data'=>$model,
11 | 'attributes'=>array(
12 | 'id',
13 | 'inviter.username',
14 | 'status',
15 | 'invited.username',
16 | 'acknowledgetime',
17 | 'requesttime',
18 | 'updatetime',
19 | 'message',
20 |
21 | ),
22 | )); ?>
23 |
--------------------------------------------------------------------------------
/user/docs/testing.txt:
--------------------------------------------------------------------------------
1 | Since Yum 0.8 a set of unit tests is being shipped to test portions of your
2 | Application. The Unit-Tests are included in the tests/unit folder.
3 |
4 | In order to use them, simply copy them over to you application-specific
5 | unit test folder (webroot/protected/tests/unit) and run them with phpunit. See
6 |
7 | http://www.yiiframework.com/doc/guide/1.1/en/test.overview
8 | http://www.yiiframework.com/doc/guide/1.1/en/test.unit
9 |
10 | on how unit test works.
11 |
--------------------------------------------------------------------------------
/membership/views/payment/index.php:
--------------------------------------------------------------------------------
1 | breadcrumbs = array(
3 | 'Payments',
4 | Yii::t('app', 'Index'),
5 | );
6 |
7 | $this->menu=array(
8 | array('label'=>Yii::t('app', 'Create') . ' Payment', 'url'=>array('create')),
9 | array('label'=>Yii::t('app', 'Manage') . ' Payment', 'url'=>array('admin')),
10 | );
11 | ?>
12 |
13 | Payments
14 |
15 | widget('zii.widgets.CListView', array(
16 | 'dataProvider'=>$dataProvider,
17 | 'itemView'=>'_view',
18 | )); ?>
19 |
--------------------------------------------------------------------------------
/user/views/csv/select.php:
--------------------------------------------------------------------------------
1 | breadcrumbs = array(
3 | Yum::t('Users') => array('//user/user/admin'),
4 | Yum::t('Csv export'));
5 |
6 | echo CHtml::beginForm(array('//user/csv/export'));
7 |
8 | echo CHtml::checkBoxList('profile_fields',
9 | array(), $profile_fields, array(
10 | 'checkAll' => Yum::t('Select all'),
11 | ));
12 |
13 | echo '
';
14 | echo '
';
15 |
16 | echo CHtml::submitButton(Yum::t('Start export'));
17 |
18 | echo CHtml::endForm();
19 | ?>
20 |
--------------------------------------------------------------------------------
/user/components/select2/messages/id/select2.php:
--------------------------------------------------------------------------------
1 | 'Tidak diketemukan hasil',
4 | 'Please enter {chars} more characters' => 'Mohon memasukkan karakter lebih dari {chars}',
5 | 'Please enter {chars} less characters' => 'Mohon memasukkan karakter kurang dari {chars}',
6 | 'You can only select {count} items' => 'Anda hanya dapat memilih {count} item',
7 | 'Loading more results...' => 'Memuat lebih banyak hasil...',
8 | 'Searching...' => 'Mencari...',
9 | );
10 |
--------------------------------------------------------------------------------
/role/views/action/view.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | breadcrumbs=array(
7 | Yum::t('Actions')=>array('index'),
8 | $model->title,
9 | );
10 |
11 | ?>
12 |
13 |
title; ?>
14 |
15 | widget('zii.widgets.CDetailView', array(
16 | 'data'=>$model,
17 | 'attributes'=>array(
18 | 'id',
19 | 'title',
20 | 'comment',
21 | 'subject',
22 | ),
23 | )); ?>
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/membership/views/payment/_view.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | getAttributeLabel('id')); ?>:
4 | id), array('view', 'id'=>$data->id)); ?>
5 |
6 |
7 | getAttributeLabel('title')); ?>:
8 | title); ?>
9 |
10 |
11 | getAttributeLabel('text')); ?>:
12 | text); ?>
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/user/messages/de/yum_registration.php:
--------------------------------------------------------------------------------
1 | 'Ihr Zugang wurde aktiviert',
4 | 'Activation did not work' => 'Die Aktivierung ist fehlgeschlagen',
5 | 'The user is already activated' => 'Der Benutzer ist bereits aktiviert',
6 | 'Wrong activation Key' => 'Falscher Aktivierungsschlüssel',
7 | 'Instructions have been sent to you. Please check your email.' => 'Ihnen wurde eine E-Mail mit einem Aktivierungslink zugesendet. Bitte überprüfen Sie Ihr E-Mail Postfach. '
8 | );
9 | ?>
10 |
--------------------------------------------------------------------------------
/user/vendors/hybridauth/Hybrid/Providers/OpenID.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | HybridAuth Endpoint
4 |
5 |
6 |
7 |
8 | HybridAuth
9 | Open Source Social Sign On PHP Library.
10 |
11 | hybridauth.sourceforge.net/
12 |
13 |