From 6739dba792f210a1836489a191527747d21e3da4 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 4 Dec 2014 21:04:33 -0500 Subject: Move user templates to a subfolder --- app/Controller/User.php | 32 ++++++++--------- app/Locale/fr_FR/translations.php | 2 +- app/Model/ProjectPermission.php | 2 +- app/Template/user/edit.php | 32 +++++++++++++++++ app/Template/user/external.php | 39 ++++++++++++++++++++ app/Template/user/index.php | 72 +++++++++++++++++++++++++++++++++++++ app/Template/user/last.php | 24 +++++++++++++ app/Template/user/layout.php | 18 ++++++++++ app/Template/user/login.php | 32 +++++++++++++++++ app/Template/user/new.php | 39 ++++++++++++++++++++ app/Template/user/notifications.php | 26 ++++++++++++++ app/Template/user/password.php | 26 ++++++++++++++ app/Template/user/remove.php | 13 +++++++ app/Template/user/sessions.php | 26 ++++++++++++++ app/Template/user/show.php | 12 +++++++ app/Template/user/sidebar.php | 39 ++++++++++++++++++++ app/Template/user_edit.php | 30 ---------------- app/Template/user_external.php | 39 -------------------- app/Template/user_index.php | 72 ------------------------------------- app/Template/user_last.php | 24 ------------- app/Template/user_layout.php | 18 ---------- app/Template/user_login.php | 32 ----------------- app/Template/user_new.php | 38 -------------------- app/Template/user_notifications.php | 25 ------------- app/Template/user_password.php | 23 ------------ app/Template/user_remove.php | 12 ------- app/Template/user_sessions.php | 26 -------------- app/Template/user_show.php | 12 ------- app/Template/user_sidebar.php | 39 -------------------- 29 files changed, 416 insertions(+), 408 deletions(-) create mode 100644 app/Template/user/edit.php create mode 100644 app/Template/user/external.php create mode 100644 app/Template/user/index.php create mode 100644 app/Template/user/last.php create mode 100644 app/Template/user/layout.php create mode 100644 app/Template/user/login.php create mode 100644 app/Template/user/new.php create mode 100644 app/Template/user/notifications.php create mode 100644 app/Template/user/password.php create mode 100644 app/Template/user/remove.php create mode 100644 app/Template/user/sessions.php create mode 100644 app/Template/user/show.php create mode 100644 app/Template/user/sidebar.php delete mode 100644 app/Template/user_edit.php delete mode 100644 app/Template/user_external.php delete mode 100644 app/Template/user_index.php delete mode 100644 app/Template/user_last.php delete mode 100644 app/Template/user_layout.php delete mode 100644 app/Template/user_login.php delete mode 100644 app/Template/user_new.php delete mode 100644 app/Template/user_notifications.php delete mode 100644 app/Template/user_password.php delete mode 100644 app/Template/user_remove.php delete mode 100644 app/Template/user_sessions.php delete mode 100644 app/Template/user_show.php delete mode 100644 app/Template/user_sidebar.php (limited to 'app') diff --git a/app/Controller/User.php b/app/Controller/User.php index 0a4d66f2..31413fc0 100644 --- a/app/Controller/User.php +++ b/app/Controller/User.php @@ -34,7 +34,7 @@ class User extends Base $this->response->redirect('?controller=app'); } - $this->response->html($this->template->layout('user_login', array( + $this->response->html($this->template->layout('user/login', array( 'errors' => array(), 'values' => array(), 'no_layout' => true, @@ -63,7 +63,7 @@ class User extends Base } } - $this->response->html($this->template->layout('user_login', array( + $this->response->html($this->template->layout('user/login', array( 'errors' => $errors, 'values' => $values, 'no_layout' => true, @@ -90,7 +90,7 @@ class User extends Base $params['title'] = ($params['user']['name'] ?: $params['user']['username']).' (#'.$params['user']['id'].')'; } - return $this->template->layout('user_layout', $params); + return $this->template->layout('user/layout', $params); } /** @@ -130,7 +130,7 @@ class User extends Base $nb_users = $this->user->count(); $this->response->html( - $this->template->layout('user_index', array( + $this->template->layout('user/index', array( 'board_selector' => $this->projectPermission->getAllowedProjects($this->acl->getUserId()), 'projects' => $this->project->getList(), 'nb_users' => $nb_users, @@ -156,7 +156,7 @@ class User extends Base */ public function create() { - $this->response->html($this->template->layout('user_new', array( + $this->response->html($this->template->layout('user/new', array( 'board_selector' => $this->projectPermission->getAllowedProjects($this->acl->getUserId()), 'projects' => $this->project->getList(), 'errors' => array(), @@ -186,7 +186,7 @@ class User extends Base } } - $this->response->html($this->template->layout('user_new', array( + $this->response->html($this->template->layout('user/new', array( 'board_selector' => $this->projectPermission->getAllowedProjects($this->acl->getUserId()), 'projects' => $this->project->getList(), 'errors' => $errors, @@ -203,7 +203,7 @@ class User extends Base public function show() { $user = $this->getUser(); - $this->response->html($this->layout('user_show', array( + $this->response->html($this->layout('user/show', array( 'projects' => $this->projectPermission->getAllowedProjects($user['id']), 'user' => $user, ))); @@ -217,7 +217,7 @@ class User extends Base public function last() { $user = $this->getUser(); - $this->response->html($this->layout('user_last', array( + $this->response->html($this->layout('user/last', array( 'last_logins' => $this->lastLogin->getAll($user['id']), 'user' => $user, ))); @@ -231,7 +231,7 @@ class User extends Base public function sessions() { $user = $this->getUser(); - $this->response->html($this->layout('user_sessions', array( + $this->response->html($this->layout('user/sessions', array( 'sessions' => $this->authentication->backend('rememberMe')->getAll($user['id']), 'user' => $user, ))); @@ -266,7 +266,7 @@ class User extends Base $this->response->redirect('?controller=user&action=notifications&user_id='.$user['id']); } - $this->response->html($this->layout('user_notifications', array( + $this->response->html($this->layout('user/notifications', array( 'projects' => $this->projectPermission->getAllowedProjects($user['id']), 'notifications' => $this->notification->readSettings($user['id']), 'user' => $user, @@ -281,7 +281,7 @@ class User extends Base public function external() { $user = $this->getUser(); - $this->response->html($this->layout('user_external', array( + $this->response->html($this->layout('user/external', array( 'last_logins' => $this->lastLogin->getAll($user['id']), 'user' => $user, ))); @@ -316,7 +316,7 @@ class User extends Base } } - $this->response->html($this->layout('user_password', array( + $this->response->html($this->layout('user/password', array( 'values' => $values, 'errors' => $errors, 'user' => $user, @@ -365,7 +365,7 @@ class User extends Base } } - $this->response->html($this->layout('user_edit', array( + $this->response->html($this->layout('user/edit', array( 'values' => $values, 'errors' => $errors, 'projects' => $this->projectPermission->filterProjects($this->project->getList(), $user['id']), @@ -395,7 +395,7 @@ class User extends Base $this->response->redirect('?controller=user'); } - $this->response->html($this->layout('user_remove', array( + $this->response->html($this->layout('user/remove', array( 'user' => $user, ))); } @@ -431,7 +431,7 @@ class User extends Base $this->response->redirect('?controller=app'); } else { - $this->response->html($this->template->layout('user_login', array( + $this->response->html($this->template->layout('user/login', array( 'errors' => array('login' => t('Google authentication failed')), 'values' => array(), 'no_layout' => true, @@ -493,7 +493,7 @@ class User extends Base $this->response->redirect('?controller=app'); } else { - $this->response->html($this->template->layout('user_login', array( + $this->response->html($this->template->layout('user/login', array( 'errors' => array('login' => t('GitHub authentication failed')), 'values' => array(), 'no_layout' => true, diff --git a/app/Locale/fr_FR/translations.php b/app/Locale/fr_FR/translations.php index 4eb0dc72..94ed70d2 100644 --- a/app/Locale/fr_FR/translations.php +++ b/app/Locale/fr_FR/translations.php @@ -457,7 +457,7 @@ return array( 'Edit profile' => 'Modifier le profil', 'Change password' => 'Changer le mot de passe', 'Password modification' => 'Changement de mot de passe', - 'External authentications' => 'Authentifications externe', + 'External authentications' => 'Authentifications externes', 'Google Account' => 'Compte Google', 'Github Account' => 'Compte Github', 'Never connected.' => 'Jamais connecté.', diff --git a/app/Model/ProjectPermission.php b/app/Model/ProjectPermission.php index c890a94f..8984ef3e 100644 --- a/app/Model/ProjectPermission.php +++ b/app/Model/ProjectPermission.php @@ -176,7 +176,7 @@ class ProjectPermission extends Base */ public function isUserAllowed($project_id, $user_id) { - return $this->user->isAdmin($user_id) || $this->isMember($project_id, $user_id); + return $project_id === 0 || $this->user->isAdmin($user_id) || $this->isMember($project_id, $user_id); } /** diff --git a/app/Template/user/edit.php b/app/Template/user/edit.php new file mode 100644 index 00000000..bc942567 --- /dev/null +++ b/app/Template/user/edit.php @@ -0,0 +1,32 @@ + +
+ + + + + + + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + + $user['id'])) ?> +
+
\ No newline at end of file diff --git a/app/Template/user/external.php b/app/Template/user/external.php new file mode 100644 index 00000000..31ffcb75 --- /dev/null +++ b/app/Template/user/external.php @@ -0,0 +1,39 @@ + + + +

+ +

+ + + + + + + + + +

+ + + +

+ +

+ + + + + + + + + +

+ + + +

+ diff --git a/app/Template/user/index.php b/app/Template/user/index.php new file mode 100644 index 00000000..73612b0b --- /dev/null +++ b/app/Template/user/index.php @@ -0,0 +1,72 @@ +
+ +
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ $user['id'])) ?> + + $user['id'])) ?> + + + + + + + + + + + + + + + +
    + +
  • + + +
  • + +
+
+ +
+ + + +
+
diff --git a/app/Template/user/last.php b/app/Template/user/last.php new file mode 100644 index 00000000..0b55b0d5 --- /dev/null +++ b/app/Template/user/last.php @@ -0,0 +1,24 @@ + + + +

+ + + + + + + + + + + + + + + + +
+ \ No newline at end of file diff --git a/app/Template/user/layout.php b/app/Template/user/layout.php new file mode 100644 index 00000000..0778b716 --- /dev/null +++ b/app/Template/user/layout.php @@ -0,0 +1,18 @@ +
+ + +
\ No newline at end of file diff --git a/app/Template/user/login.php b/app/Template/user/login.php new file mode 100644 index 00000000..fea44a01 --- /dev/null +++ b/app/Template/user/login.php @@ -0,0 +1,32 @@ +
+ + +

+ + +
+ + + + +
+ + + + +
+ + + + + + + + + +
+ +
+
+ +
\ No newline at end of file diff --git a/app/Template/user/new.php b/app/Template/user/new.php new file mode 100644 index 00000000..af5824e0 --- /dev/null +++ b/app/Template/user/new.php @@ -0,0 +1,39 @@ +
+ +
+
+ + + + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + + +
+ + + +
+
+
+
\ No newline at end of file diff --git a/app/Template/user/notifications.php b/app/Template/user/notifications.php new file mode 100644 index 00000000..33da61fb --- /dev/null +++ b/app/Template/user/notifications.php @@ -0,0 +1,26 @@ + + +
+ + + +
+ + +



+ +
+ $project_name): ?> +
+ +
+ + +
+ + + $user['id'])) ?> +
+
\ No newline at end of file diff --git a/app/Template/user/password.php b/app/Template/user/password.php new file mode 100644 index 00000000..76e0ab15 --- /dev/null +++ b/app/Template/user/password.php @@ -0,0 +1,26 @@ + + +
+ + + + +
+ +
+
+ + +
+ + +
+ +
+ + + $user['id'])) ?> +
+
diff --git a/app/Template/user/remove.php b/app/Template/user/remove.php new file mode 100644 index 00000000..5f58b631 --- /dev/null +++ b/app/Template/user/remove.php @@ -0,0 +1,13 @@ + + +
+

+ +
+ $user['id'], 'confirmation' => 'yes'), true, 'btn btn-red') ?> + + $user['id'])) ?> +
+
\ No newline at end of file diff --git a/app/Template/user/sessions.php b/app/Template/user/sessions.php new file mode 100644 index 00000000..d05d5b6d --- /dev/null +++ b/app/Template/user/sessions.php @@ -0,0 +1,26 @@ + + + +

+ + + + + + + + + + + + + + + + + + +
$user['id'], 'id' => $session['id']), true) ?>
+ diff --git a/app/Template/user/show.php b/app/Template/user/show.php new file mode 100644 index 00000000..1c843751 --- /dev/null +++ b/app/Template/user/show.php @@ -0,0 +1,12 @@ + + diff --git a/app/Template/user/sidebar.php b/app/Template/user/sidebar.php new file mode 100644 index 00000000..0a1a0764 --- /dev/null +++ b/app/Template/user/sidebar.php @@ -0,0 +1,39 @@ + \ No newline at end of file diff --git a/app/Template/user_edit.php b/app/Template/user_edit.php deleted file mode 100644 index 14063d49..00000000 --- a/app/Template/user_edit.php +++ /dev/null @@ -1,30 +0,0 @@ - -
- - - - - - - -
- - -
- - -
- - -
- - -
- - -
- -
-
\ No newline at end of file diff --git a/app/Template/user_external.php b/app/Template/user_external.php deleted file mode 100644 index 676b2c73..00000000 --- a/app/Template/user_external.php +++ /dev/null @@ -1,39 +0,0 @@ - - - -

- -

- - - - - - - - - -

- - - -

- -

- - - - - - - - - -

- - - -

- diff --git a/app/Template/user_index.php b/app/Template/user_index.php deleted file mode 100644 index 73612b0b..00000000 --- a/app/Template/user_index.php +++ /dev/null @@ -1,72 +0,0 @@ -
- -
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - -
- $user['id'])) ?> - - $user['id'])) ?> - - - - - - - - - - - - - - - -
    - -
  • - - -
  • - -
-
- -
- - - -
-
diff --git a/app/Template/user_last.php b/app/Template/user_last.php deleted file mode 100644 index 0b55b0d5..00000000 --- a/app/Template/user_last.php +++ /dev/null @@ -1,24 +0,0 @@ - - - -

- - - - - - - - - - - - - - - - -
- \ No newline at end of file diff --git a/app/Template/user_layout.php b/app/Template/user_layout.php deleted file mode 100644 index 1fbc1ea0..00000000 --- a/app/Template/user_layout.php +++ /dev/null @@ -1,18 +0,0 @@ -
- - -
\ No newline at end of file diff --git a/app/Template/user_login.php b/app/Template/user_login.php deleted file mode 100644 index a8e8fc15..00000000 --- a/app/Template/user_login.php +++ /dev/null @@ -1,32 +0,0 @@ -
- - -

- - -
- - - - -
- - - - -
- - - - - - - - - -
- -
-
- -
\ No newline at end of file diff --git a/app/Template/user_new.php b/app/Template/user_new.php deleted file mode 100644 index 1e483ade..00000000 --- a/app/Template/user_new.php +++ /dev/null @@ -1,38 +0,0 @@ -
- -
-
- - - - -
- - -
- - -
- - -
- - -
- - -
- - - -
- - -
-
-
-
\ No newline at end of file diff --git a/app/Template/user_notifications.php b/app/Template/user_notifications.php deleted file mode 100644 index 4a32a41d..00000000 --- a/app/Template/user_notifications.php +++ /dev/null @@ -1,25 +0,0 @@ - - -
- - - -
- - -



- -
- $project_name): ?> - - -
- - -
- - -
-
\ No newline at end of file diff --git a/app/Template/user_password.php b/app/Template/user_password.php deleted file mode 100644 index 5da38595..00000000 --- a/app/Template/user_password.php +++ /dev/null @@ -1,23 +0,0 @@ - - -
- - - - - -
- - -
- - -
- -
- -
- -
\ No newline at end of file diff --git a/app/Template/user_remove.php b/app/Template/user_remove.php deleted file mode 100644 index c20ccbba..00000000 --- a/app/Template/user_remove.php +++ /dev/null @@ -1,12 +0,0 @@ - - -
-

- -
- - -
-
\ No newline at end of file diff --git a/app/Template/user_sessions.php b/app/Template/user_sessions.php deleted file mode 100644 index b647d726..00000000 --- a/app/Template/user_sessions.php +++ /dev/null @@ -1,26 +0,0 @@ - - - -

- - - - - - - - - - - - - - - - - - -
- diff --git a/app/Template/user_show.php b/app/Template/user_show.php deleted file mode 100644 index 1c843751..00000000 --- a/app/Template/user_show.php +++ /dev/null @@ -1,12 +0,0 @@ - - diff --git a/app/Template/user_sidebar.php b/app/Template/user_sidebar.php deleted file mode 100644 index 16532143..00000000 --- a/app/Template/user_sidebar.php +++ /dev/null @@ -1,39 +0,0 @@ - \ No newline at end of file -- cgit v1.2.3