FINAL suepr merge step : added all modules to this super repos
This commit is contained in:
15
sites/all/themes/gui/guibik/templates/better_messages.tpl.php
Executable file
15
sites/all/themes/gui/guibik/templates/better_messages.tpl.php
Executable file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/*
|
||||
Available variables are:
|
||||
$content The messages to put inside Better Messages. Drupal originally calls theme_status_messages() to theme this output.
|
||||
With this module enabled you'll always have to call theme_better_messages_content() instead of theme_status_messages().
|
||||
*/
|
||||
?><div id="better-messages-default">
|
||||
<div id="messages-inner">
|
||||
<div class="content">
|
||||
<?php /* If you want to theme further.. theme_better_messages_content() */ ?>
|
||||
<?php print $content ?>
|
||||
</div>
|
||||
<div class="footer"><span class="message-timer"></span><a class="message-close" href="#"></a></div>
|
||||
</div>
|
||||
</div>
|
13
sites/all/themes/gui/guibik/templates/form-default.tpl.php
Normal file
13
sites/all/themes/gui/guibik/templates/form-default.tpl.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<div class='form form-layout-default clearfix'>
|
||||
<div class='column-main'><div class='column-wrapper clearfix'>
|
||||
<?php print drupal_render_children($form); ?>
|
||||
<?php print rubik_render_clone($actions); ?>
|
||||
</div></div>
|
||||
<div class='column-side'><div class='column-wrapper clearfix'>
|
||||
<?php print drupal_render($sidebar); ?>
|
||||
<?php print drupal_render($actions); ?>
|
||||
</div></div>
|
||||
<?php if (!empty($footer)): ?>
|
||||
<div class='column-footer'><div class='column-wrapper clearfix'><?php print drupal_render($footer); ?></div></div>
|
||||
<?php endif; ?>
|
||||
</div>
|
98
sites/all/themes/gui/guibik/templates/views-view.tpl.php
Normal file
98
sites/all/themes/gui/guibik/templates/views-view.tpl.php
Normal file
@@ -0,0 +1,98 @@
|
||||
<?php
|
||||
/**
|
||||
* @file views-view.tpl.php
|
||||
* Main view template
|
||||
*
|
||||
* Variables available:
|
||||
* - $classes_array: An array of classes determined in
|
||||
* template_preprocess_views_view(). Default classes are:
|
||||
* .view
|
||||
* .view-[css_name]
|
||||
* .view-id-[view_name]
|
||||
* .view-display-id-[display_name]
|
||||
* .view-dom-id-[dom_id]
|
||||
* - $classes: A string version of $classes_array for use in the class attribute
|
||||
* - $css_name: A css-safe version of the view name.
|
||||
* - $css_class: The user-specified classes names, if any
|
||||
* - $header: The view header
|
||||
* - $footer: The view footer
|
||||
* - $rows: The results of the view query, if any
|
||||
* - $empty: The empty text to display if the view is empty
|
||||
* - $pager: The pager next/prev links to display, if any
|
||||
* - $exposed: Exposed widget form/info to display
|
||||
* - $feed_icon: Feed icon to display, if any
|
||||
* - $more: A link to view more, if any
|
||||
*
|
||||
* @ingroup views_templates
|
||||
*/
|
||||
?>
|
||||
<div class="<?php print $classes; ?>">
|
||||
<?php print render($title_prefix); ?>
|
||||
<?php if ($title): ?>
|
||||
<?php print $title; ?>
|
||||
<?php endif; ?>
|
||||
<?php print render($title_suffix); ?>
|
||||
<?php if ($header): ?>
|
||||
<div class="view-header">
|
||||
<?php print $header; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($exposed): ?>
|
||||
<div class="view-filters">
|
||||
<span class="title"><?php print t('Filters'); ?></span>
|
||||
<?php print $exposed; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($pager): ?>
|
||||
<div class="pager">
|
||||
<?php print $pager; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($attachment_before): ?>
|
||||
<div class="attachment attachment-before">
|
||||
<?php print $attachment_before; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($rows): ?>
|
||||
<div class="view-content">
|
||||
<?php print $rows; ?>
|
||||
</div>
|
||||
<?php elseif ($empty): ?>
|
||||
<div class="view-empty">
|
||||
<?php print $empty; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($pager): ?>
|
||||
<div class="pager">
|
||||
<?php print $pager; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($attachment_after): ?>
|
||||
<div class="attachment attachment-after">
|
||||
<?php print $attachment_after; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($more): ?>
|
||||
<?php print $more; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($footer): ?>
|
||||
<div class="view-footer">
|
||||
<?php print $footer; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($feed_icon): ?>
|
||||
<div class="feed-icon">
|
||||
<?php print $feed_icon; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
</div><?php /* class view */ ?>
|
Reference in New Issue
Block a user