first import
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Template to control the add content individual links in the add content modal.
|
||||
*/
|
||||
?>
|
||||
<div class="content-type-button clearfix">
|
||||
<?php print $image_button; ?>
|
||||
<div><?php print $text_button; ?></div>
|
||||
</div>
|
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Template to control the add content modal.
|
||||
*/
|
||||
?>
|
||||
<div class="panels-add-content-modal">
|
||||
<div class="panels-section-column panels-section-column-categories">
|
||||
<div class="inside">
|
||||
<div class="panels-categories-box">
|
||||
<?php foreach ($categories_array as $category): ?>
|
||||
<?php print $category; ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<?php print $root_content; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php print $messages; ?>
|
||||
|
||||
<?php if (!empty($header)): ?>
|
||||
<div class="panels-categories-description">
|
||||
<?php print $header; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (!empty($columns)): ?>
|
||||
<div class="panels-section-columns">
|
||||
<?php foreach ($columns as $column_id => $column): ?>
|
||||
<div class="panels-section-column panels-section-column-<?php print $column_id; ?> ">
|
||||
<div class="inside">
|
||||
<?php print $column; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
?>
|
||||
<div class="dashboard-block">
|
||||
<h3 class="dashboard-title"><?php print $block['title']; ?></h3>
|
||||
<div class="dashboard-content <?php print $block['class']; ?>">
|
||||
<?php print $block['content']; ?>
|
||||
<?php if (!empty($block['link'])): ?>
|
||||
<div class="links">
|
||||
<?php print $block['link']; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
?>
|
||||
<div class="dashboard-entry clearfix">
|
||||
<div class="dashboard-text">
|
||||
<div class="dashboard-link">
|
||||
<?php print $link['title']; ?>
|
||||
</div>
|
||||
<div class="description">
|
||||
<?php print $link['description']; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
11
sites/all/modules/panels/templates/panels-dashboard.tpl.php
Normal file
11
sites/all/modules/panels/templates/panels-dashboard.tpl.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
?>
|
||||
<div class="panels-dashboard clearfix">
|
||||
<div class="dashboard-left clearfix">
|
||||
<?php print $left; ?>
|
||||
</div>
|
||||
|
||||
<div class="dashboard-right clearfix">
|
||||
<?php print $right; ?>
|
||||
</div>
|
||||
</div>
|
58
sites/all/modules/panels/templates/panels-pane.tpl.php
Normal file
58
sites/all/modules/panels/templates/panels-pane.tpl.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* @file panels-pane.tpl.php
|
||||
* Main panel pane template
|
||||
*
|
||||
* Variables available:
|
||||
* - $pane->type: the content type inside this pane
|
||||
* - $pane->subtype: The subtype, if applicable. If a view it will be the
|
||||
* view name; if a node it will be the nid, etc.
|
||||
* - $title: The title of the content
|
||||
* - $content: The actual content
|
||||
* - $links: Any links associated with the content
|
||||
* - $more: An optional 'more' link (destination only)
|
||||
* - $admin_links: Administrative links associated with the content
|
||||
* - $feeds: Any feed icons or associated with the content
|
||||
* - $display: The complete panels display object containing all kinds of
|
||||
* data including the contexts and all of the other panes being displayed.
|
||||
*/
|
||||
?>
|
||||
<?php if ($pane_prefix): ?>
|
||||
<?php print $pane_prefix; ?>
|
||||
<?php endif; ?>
|
||||
<div class="<?php print $classes; ?>" <?php print $id; ?>>
|
||||
<?php if ($admin_links): ?>
|
||||
<?php print $admin_links; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php print render($title_prefix); ?>
|
||||
<?php if ($title): ?>
|
||||
<h2<?php print $title_attributes; ?>><?php print $title; ?></h2>
|
||||
<?php endif; ?>
|
||||
<?php print render($title_suffix); ?>
|
||||
|
||||
<?php if ($feeds): ?>
|
||||
<div class="feed">
|
||||
<?php print $feeds; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="pane-content">
|
||||
<?php print render($content); ?>
|
||||
</div>
|
||||
|
||||
<?php if ($links): ?>
|
||||
<div class="links">
|
||||
<?php print $links; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($more): ?>
|
||||
<div class="more-link">
|
||||
<?php print $more; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php if ($pane_suffix): ?>
|
||||
<?php print $pane_suffix; ?>
|
||||
<?php endif; ?>
|
Reference in New Issue
Block a user