170 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			170 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
| @extends('tri-layout')
 | |
| 
 | |
| @section('body')
 | |
| 
 | |
|     <div class="mb-m">
 | |
|         @include('partials.breadcrumbs', ['crumbs' => [
 | |
|             $page->book,
 | |
|             $page->hasChapter() ? $page->chapter : null,
 | |
|             $page,
 | |
|         ]])
 | |
|     </div>
 | |
| 
 | |
|     <div class="content-wrap card">
 | |
|         <div class="page-content" page-display="{{ $page->id }}">
 | |
|             @include('pages.pointer', ['page' => $page])
 | |
|             @include('pages.page-display')
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     @if ($commentsEnabled)
 | |
|         <div class="container small p-none comments-container mb-l">
 | |
|             @include('comments.comments', ['page' => $page])
 | |
|             <div class="clearfix"></div>
 | |
|         </div>
 | |
|     @endif
 | |
| @stop
 | |
| 
 | |
| @section('left')
 | |
| 
 | |
|     @if($page->tags->count() > 0)
 | |
|         <section>
 | |
|             @include('components.tag-list', ['entity' => $page])
 | |
|         </section>
 | |
|     @endif
 | |
| 
 | |
|     @if ($page->attachments->count() > 0)
 | |
|         <div id="page-attachments" class="mb-l">
 | |
|             <h5>{{ trans('entities.pages_attachments') }}</h5>
 | |
|             <div class="body">
 | |
|                 @foreach($page->attachments as $attachment)
 | |
|                     <div class="attachment icon-list">
 | |
|                         <a class="icon-list-item py-xs" href="{{ $attachment->getUrl() }}" @if($attachment->external) target="_blank" @endif>
 | |
|                             <span class="icon">@icon($attachment->external ? 'export' : 'file')</span>
 | |
|                             <span>{{ $attachment->name }}</span>
 | |
|                         </a>
 | |
|                     </div>
 | |
|                 @endforeach
 | |
|             </div>
 | |
|         </div>
 | |
|     @endif
 | |
| 
 | |
|     @if (isset($pageNav) && count($pageNav))
 | |
|         <div id="page-navigation" class="mb-xl">
 | |
|             <h5>{{ trans('entities.pages_navigation') }}</h5>
 | |
|             <div class="body">
 | |
|                 <div class="sidebar-page-nav menu">
 | |
|                     @foreach($pageNav as $navItem)
 | |
|                         <li class="page-nav-item h{{ $navItem['level'] }}">
 | |
|                             <a href="{{ $navItem['link'] }}" class="limit-text block">{{ $navItem['text'] }}</a>
 | |
|                             <div class="primary-background sidebar-page-nav-bullet"></div>
 | |
|                         </li>
 | |
|                     @endforeach
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     @endif
 | |
| 
 | |
|     @include('partials.book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree])
 | |
| @stop
 | |
| 
 | |
| @section('right')
 | |
|     <div id="page-details" class="entity-details mb-xl">
 | |
|         <h5>{{ trans('common.details') }}</h5>
 | |
|         <div class="body text-small blended-links">
 | |
|             @include('partials.entity-meta', ['entity' => $page])
 | |
| 
 | |
|             @if($book->restricted)
 | |
|                 <div class="active-restriction">
 | |
|                     @if(userCan('restrictions-manage', $book))
 | |
|                         <a href="{{ $book->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.books_permissions_active') }}</a>
 | |
|                     @else
 | |
|                         @icon('lock'){{ trans('entities.books_permissions_active') }}
 | |
|                     @endif
 | |
|                 </div>
 | |
|             @endif
 | |
| 
 | |
|             @if($page->chapter && $page->chapter->restricted)
 | |
|                 <div class="active-restriction">
 | |
|                     @if(userCan('restrictions-manage', $page->chapter))
 | |
|                         <a href="{{ $page->chapter->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.chapters_permissions_active') }}</a>
 | |
|                     @else
 | |
|                         @icon('lock'){{ trans('entities.chapters_permissions_active') }}
 | |
|                     @endif
 | |
|                 </div>
 | |
|             @endif
 | |
| 
 | |
|             @if($page->restricted)
 | |
|                 <div class="active-restriction">
 | |
|                     @if(userCan('restrictions-manage', $page))
 | |
|                         <a href="{{ $page->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.pages_permissions_active') }}</a>
 | |
|                     @else
 | |
|                         @icon('lock'){{ trans('entities.pages_permissions_active') }}
 | |
|                     @endif
 | |
|                 </div>
 | |
|             @endif
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     <div class="actions mb-xl">
 | |
|         <h5>Actions</h5>
 | |
| 
 | |
|         <div class="icon-list text-primary">
 | |
| 
 | |
|             {{--User Actions--}}
 | |
|             @if(userCan('page-update', $page))
 | |
|                 <a href="{{ $page->getUrl('/edit') }}" class="icon-list-item">
 | |
|                     <span>@icon('edit')</span>
 | |
|                     <span>{{ trans('common.edit') }}</span>
 | |
|                 </a>
 | |
|             @endif
 | |
|             @if(userCanOnAny('page-create'))
 | |
|                 <a href="{{ $page->getUrl('/copy') }}" class="icon-list-item">
 | |
|                     <span>@icon('copy')</span>
 | |
|                     <span>{{ trans('common.copy') }}</span>
 | |
|                 </a>
 | |
|             @endif
 | |
|             @if(userCan('page-update', $page))
 | |
|                 @if(userCan('page-delete', $page))
 | |
| 	                <a href="{{ $page->getUrl('/move') }}" class="icon-list-item">
 | |
| 	                    <span>@icon('folder')</span>
 | |
| 	                    <span>{{ trans('common.move') }}</span>
 | |
| 	                </a>
 | |
|                 @endif
 | |
|                 <a href="{{ $page->getUrl('/revisions') }}" class="icon-list-item">
 | |
|                     <span>@icon('history')</span>
 | |
|                     <span>{{ trans('entities.revisions') }}</span>
 | |
|                 </a>
 | |
|             @endif
 | |
|             @if(userCan('restrictions-manage', $page))
 | |
|                 <a href="{{ $page->getUrl('/permissions') }}" class="icon-list-item">
 | |
|                     <span>@icon('lock')</span>
 | |
|                     <span>{{ trans('entities.permissions') }}</span>
 | |
|                 </a>
 | |
|             @endif
 | |
|             @if(userCan('page-delete', $page))
 | |
|                 <a href="{{ $page->getUrl('/delete') }}" class="icon-list-item">
 | |
|                     <span>@icon('delete')</span>
 | |
|                     <span>{{ trans('common.delete') }}</span>
 | |
|                 </a>
 | |
|             @endif
 | |
| 
 | |
|             <hr class="primary-background"/>
 | |
| 
 | |
|             {{--Export--}}
 | |
|             <div dropdown class="dropdown-container block">
 | |
|                 <div dropdown-toggle class="icon-list-item">
 | |
|                     <span>@icon('export')</span>
 | |
|                     <span>{{ trans('entities.export') }}</span>
 | |
|                 </div>
 | |
|                 <ul class="dropdown-menu wide">
 | |
|                     <li><a href="{{ $page->getUrl('/export/html') }}" target="_blank">{{ trans('entities.export_html') }} <span class="text-muted float right">.html</span></a></li>
 | |
|                     <li><a href="{{ $page->getUrl('/export/pdf') }}" target="_blank">{{ trans('entities.export_pdf') }} <span class="text-muted float right">.pdf</span></a></li>
 | |
|                     <li><a href="{{ $page->getUrl('/export/plaintext') }}" target="_blank">{{ trans('entities.export_text') }} <span class="text-muted float right">.txt</span></a></li>
 | |
|                 </ul>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|     </div>
 | |
| @stop
 |