File modules/cms/ui/themes/default/html/views/tree/path.php
Last commit: Sat Dec 7 01:57:07 2024 +0100 Jan Dankert UI: Show Breadcrumb under the workbench-title.
1 <?php /* THIS FILE IS GENERATED from path.tpl.src.xml - DO NOT CHANGE */ defined('APP_STARTED') || die('Forbidden'); use \template_engine\Output as O; ?> 2 <?php foreach((array)@$path as $list_key=>$list_value) { extract($list_value); ?> 3 <div class="<?php echo O::escapeHtml('or-act-clickable or-breadcrumb-item or-breadcrumb-path') ?>"><?php echo O::escapeHtml('') ?> 4 <a target="<?php echo O::escapeHtml('_self') ?>" data-type="<?php echo O::escapeHtml('open') ?>" data-action="<?php echo O::escapeHtml(''.@$action.'') ?>" data-method="<?php echo O::escapeHtml('') ?>" data-id="<?php echo O::escapeHtml(''.@$id.'') ?>" data-extra="<?php echo O::escapeHtml('[]') ?>" href="<?php echo O::escapeHtml('#/'.@$action.'/'.@$id.'') ?>" class="<?php echo O::escapeHtml('or-link') ?>"><?php echo O::escapeHtml('') ?> 5 <i class="<?php echo O::escapeHtml('or-image-icon or-image-icon--action-'.@$action.'') ?>"><?php echo O::escapeHtml('') ?></i> 6 <span class="<?php echo O::escapeHtml('or-breadcrumb-text') ?>"><?php echo O::escapeHtml(''.@$name.'') ?></span> 7 </a> 8 <i class="<?php echo O::escapeHtml('or-image-icon or-image-icon--node-closed') ?>"><?php echo O::escapeHtml('') ?></i> 9 </div> 10 <?php } ?> 11 <div class="<?php echo O::escapeHtml('or-breadcrumb-item or-breadcrumb-actual') ?>"><?php echo O::escapeHtml('') ?> 12 <?php $if3=!(($parent)==FALSE); if($if3) { ?> 13 <a target="<?php echo O::escapeHtml('_self') ?>" data-type="<?php echo O::escapeHtml('open') ?>" data-action="<?php echo O::escapeHtml(''.@$parent['action'].'') ?>" data-method="<?php echo O::escapeHtml('') ?>" data-id="<?php echo O::escapeHtml(''.@$parent['id'].'') ?>" data-extra="<?php echo O::escapeHtml('[]') ?>" href="<?php echo O::escapeHtml('#/'.@$parent['action'].'/'.@$parent['id'].'') ?>" class="<?php echo O::escapeHtml('or-link or-breadcrumb-actual-parent or-act-clickable') ?>"><?php echo O::escapeHtml('') ?> 14 <i class="<?php echo O::escapeHtml('or-image-icon or-image-icon--menu-up or-image--rightshift') ?>"><?php echo O::escapeHtml('') ?></i> 15 </a> 16 <?php } ?> 17 <i class="<?php echo O::escapeHtml('or-image-icon or-image-icon--action-'.@$actual['action'].' or-breadcrumb-actual-icon') ?>"><?php echo O::escapeHtml('') ?></i> 18 <span class="<?php echo O::escapeHtml('or-breadcrumb-text or-breadcrumb-actual-name') ?>"><?php echo O::escapeHtml(''.@$actual['name'].'') ?></span> 19 </div>
Downloadmodules/cms/ui/themes/default/html/views/tree/path.php
History Sat, 7 Dec 2024 01:57:07 +0100 Jan Dankert UI: Show Breadcrumb under the workbench-title. Mon, 8 Mar 2021 01:24:06 +0100 Jan Dankert New: Action menu on many lists; tables have now a fixed layout Thu, 4 Mar 2021 02:00:11 +0100 Jan Dankert New: Show all page filenames in info. Sat, 13 Feb 2021 00:01:53 +0100 Jan Dankert Fix: Navigation is available, while dialog is open; Fix: Shrink Action title text if necessary. Wed, 10 Feb 2021 00:00:21 +0100 Jan Dankert Using only fullscreen views; Navigate to parent instead of complete breadcrumb. Tue, 9 Feb 2021 00:05:36 +0100 Jan Dankert Moving the breadcrumb navigation to the title bar. Sun, 15 Nov 2020 21:52:19 +0100 Jan Dankert Optimized template element renderer: Elements without children are closed in the same line. This fixes the space problem in HTML textareas. Mon, 9 Nov 2020 22:24:27 +0100 Jan Dankert New: Setting the CSS class of tables. Mon, 26 Oct 2020 21:36:14 +0100 Jan Dankert Rename css class 'clickable' to 'act-clickable'; enhanced view 'info' for projects. Sat, 24 Oct 2020 23:51:11 +0200 Jan Dankert Cleanup LESS files, introduce BEM. Thu, 22 Oct 2020 14:14:32 +0200 Jan Dankert The href-attribute of links should contain a relative url for internal links. Thu, 22 Oct 2020 13:54:16 +0200 Jan Dankert A notice for generated files. Sat, 10 Oct 2020 01:29:41 +0200 Jan Dankert Refactoring: Only using CSS classes with the 'or-'-prefix. Sun, 27 Sep 2020 04:09:05 +0200 Jan Dankert Refactoring: The tree functions should use normal templates as the other actions. Beware of the JS hell.