diff options
| -rw-r--r-- | app/Http/Controllers/BranchesController.php | 2 | ||||
| -rw-r--r-- | app/Http/Controllers/ListController.php | 10 | ||||
| -rw-r--r-- | resources/views/modules/branches/list.phtml (renamed from resources/views/branches-list.phtml) | 0 | ||||
| -rw-r--r-- | resources/views/modules/individual-list/page.phtml (renamed from resources/views/individual-list-page.phtml) | 0 | ||||
| -rw-r--r-- | resources/views/modules/media-list/page.phtml (renamed from resources/views/media-list-page.phtml) | 0 | ||||
| -rw-r--r-- | resources/views/modules/note-list/page.phtml (renamed from resources/views/note-list-page.phtml) | 0 | ||||
| -rw-r--r-- | resources/views/modules/repository-list/page.phtml (renamed from resources/views/repository-list-page.phtml) | 0 | ||||
| -rw-r--r-- | resources/views/modules/source-list/page.phtml (renamed from resources/views/source-list-page.phtml) | 0 |
8 files changed, 6 insertions, 6 deletions
diff --git a/app/Http/Controllers/BranchesController.php b/app/Http/Controllers/BranchesController.php index 58fdd40ba1..b3c183e7c6 100644 --- a/app/Http/Controllers/BranchesController.php +++ b/app/Http/Controllers/BranchesController.php @@ -129,7 +129,7 @@ class BranchesController extends AbstractBaseController $ancestors = []; } - $html = view('branches-list', [ + $html = view('modules/branches/list', [ 'branches' => $this->getPatriarchsHtml($tree, $individuals, $ancestors, $surname, $soundex_dm, $soundex_std), ]); diff --git a/app/Http/Controllers/ListController.php b/app/Http/Controllers/ListController.php index 1ce9cc1667..c7b3c0cc6e 100644 --- a/app/Http/Controllers/ListController.php +++ b/app/Http/Controllers/ListController.php @@ -389,7 +389,7 @@ class ListController extends AbstractBaseController $html = ob_get_clean(); - return $this->viewResponse('individual-list-page', [ + return $this->viewResponse('modules/individual-list/page', [ 'content' => $html, 'title' => $title, 'tree' => $tree, @@ -445,7 +445,7 @@ class ListController extends AbstractBaseController $media_objects = array_slice($media_objects, ($page - 1) * $max, $max); - return $this->viewResponse('media-list-page', [ + return $this->viewResponse('modules/media-list/page', [ 'count' => $count, 'filter' => $filter, 'folder' => $folder, @@ -479,7 +479,7 @@ class ListController extends AbstractBaseController $notes = $this->allNotes($tree); - return $this->viewResponse('note-list-page', [ + return $this->viewResponse('modules/note-list/page', [ 'notes' => $notes, 'title' => I18N::translate('Shared notes'), 'tree' => $tree, @@ -500,7 +500,7 @@ class ListController extends AbstractBaseController $repositories = $this->allRepositories($tree); - return $this->viewResponse('repository-list-page', [ + return $this->viewResponse('modules/repository-list/page', [ 'repositories' => $repositories, 'title' => I18N::translate('Repositories'), 'tree' => $tree, @@ -521,7 +521,7 @@ class ListController extends AbstractBaseController $sources = $this->allSources($tree); - return $this->viewResponse('source-list-page', [ + return $this->viewResponse('modules/source-list/page', [ 'sources' => $sources, 'title' => I18N::translate('Sources'), 'tree' => $tree, diff --git a/resources/views/branches-list.phtml b/resources/views/modules/branches/list.phtml index 5c0c15df45..5c0c15df45 100644 --- a/resources/views/branches-list.phtml +++ b/resources/views/modules/branches/list.phtml diff --git a/resources/views/individual-list-page.phtml b/resources/views/modules/individual-list/page.phtml index fc9de325be..fc9de325be 100644 --- a/resources/views/individual-list-page.phtml +++ b/resources/views/modules/individual-list/page.phtml diff --git a/resources/views/media-list-page.phtml b/resources/views/modules/media-list/page.phtml index 041925d652..041925d652 100644 --- a/resources/views/media-list-page.phtml +++ b/resources/views/modules/media-list/page.phtml diff --git a/resources/views/note-list-page.phtml b/resources/views/modules/note-list/page.phtml index 3be5fcd5dd..3be5fcd5dd 100644 --- a/resources/views/note-list-page.phtml +++ b/resources/views/modules/note-list/page.phtml diff --git a/resources/views/repository-list-page.phtml b/resources/views/modules/repository-list/page.phtml index 19ffc64459..19ffc64459 100644 --- a/resources/views/repository-list-page.phtml +++ b/resources/views/modules/repository-list/page.phtml diff --git a/resources/views/source-list-page.phtml b/resources/views/modules/source-list/page.phtml index 146fb1ef6e..146fb1ef6e 100644 --- a/resources/views/source-list-page.phtml +++ b/resources/views/modules/source-list/page.phtml |
