Skip to content
Snippets Groups Projects
Commit b0104f20 authored by Jeff Veit's avatar Jeff Veit Committed by Jeff Burnz
Browse files

fix undefined variables for php 5.3, remove old CVS tags

parent 1d32a5c6
Branches 6.x-3.x
No related tags found
No related merge requests found
Showing
with 60 additions and 41 deletions
......@@ -52,7 +52,7 @@
skinr[at-grid][type] = select
skinr[at-grid][description] = Select the width for this block. All blocks with widths set will float left to align themselves horizontally. A block with no width set will take up the full with of the region (and clear the other blocks above it). This allows you to build complex block layouts in sidebars and other regions.
skinr[at-grid][features][] = block
skinr[at-grid][options][1][label] = 60px
skinr[at-grid][options][1][class] = grid-1
skinr[at-grid][options][2][label] = 120px
......@@ -63,7 +63,7 @@
skinr[at-grid][options][4][class] = grid-3
skinr[at-grid][options][5][label] = 240px
skinr[at-grid][options][5][class] = grid-4-16
skinr[at-grid][options][6][label] = 300px
skinr[at-grid][options][6][class] = grid-5
skinr[at-grid][options][7][label] = 320px
......@@ -74,7 +74,7 @@
skinr[at-grid][options][9][class] = grid-7
skinr[at-grid][options][10][label] = 480px
skinr[at-grid][options][10][class] = grid-8
skinr[at-grid][options][11][label] = 540px
skinr[at-grid][options][11][class] = grid-9
skinr[at-grid][options][12][label] = 600px
......@@ -83,7 +83,7 @@
skinr[at-grid][options][13][class] = grid-11
skinr[at-grid][options][14][label] = 720px
skinr[at-grid][options][14][class] = grid-12
skinr[at-grid][options][15][label] = 780px
skinr[at-grid][options][15][class] = grid-13
skinr[at-grid][options][16][label] = 840px
......@@ -92,7 +92,7 @@
skinr[at-grid][options][17][class] = grid-15
skinr[at-grid][options][18][label] = 960px
skinr[at-grid][options][18][class] = grid-16
; Content alignment
skinr[at-align-content][title] = Content alignment
skinr[at-align-content][type] = select
......@@ -159,3 +159,5 @@
settings[horizontal_login_block_enable] = 'on'
settings[style_schemes] = 'style-default.css'
settings[style_enable_schemes] = 'off'
settings[horizontal_login_block_overlabel] = ''
settings[slider_login_block_enable] = 0
/**
/**
*/
/* Reset */
......@@ -14,24 +14,38 @@ label,legend {
padding: 0;
}
/* Accessibility helpers */
/* Helpful classes for hiding content */
.element-invisible {
border: 0;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
}
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static !important;
width: auto;
}
.offscreen {
position: absolute;
top: -9999em;
left: auto;
top: -99999em;
width: 1px;
height: 1px;
overflow: hidden;
outline: 0;
}
.element-hidden {
display: none;
}
.element-invisible {
position: absolute !important;
clip: rect(1px 1px 1px 1px);
clip: rect(1px, 1px, 1px, 1px);
}
.element-focusable {
position: static !important;
clip: auto;
}
\ No newline at end of file
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
// adaptivethemes.com
/**
......
<?php // $Id$
<?php
/**
* @file
......
<?php // $Id$
<?php
/**
* @file
......
<?php // $Id$
<?php
/**
* @file
......
<?php // $Id$
<?php
/**
* @file
......
<?php // $Id$
<?php
/**
* @file
......
<?php // $Id$
<?php
/**
* @file
......@@ -62,6 +62,7 @@ $vars['template_files'][] = 'node-'.$vars['node']->nid;
$vars['terms'] = theme('links', $vars['taxonomy'], array('class' => 'links term-links'));
$vars['links'] = theme('links', $vars['node']->links, array('class' => 'links link-links'));
$vars['unpublished'] = '';
if (!$vars['node']->status) {
if ($vars['page']) {
drupal_set_message(t('%title is currently unpublished', array('%title' => $vars['node']->title)), 'warning');
......@@ -69,4 +70,4 @@ if (!$vars['node']->status) {
else {
$vars['unpublished'] = '<span class="unpublished">'. t('Unpublished') .'</span>';
}
}
\ No newline at end of file
}
<?php // $Id$
<?php
/**
* @file
......@@ -17,7 +17,7 @@ if ($vars['in_maintenance'] && !$vars['logged_in'] && arg(0) == 'user' && (!arg(
$vars['title'] = drupal_set_title(t('User Login'));
}
if ($vars['content_front'] && $vars['is_front']) {
if ($vars['is_front'] && isset($vars['content_front']) && $vars['content_front']) {
$vars['content'] = $vars['content_front'];
}
......@@ -30,13 +30,14 @@ if (!$vars['show_blocks']) {
$vars['right'] = '';
}
$vars['skip_nav_class'] = '';
if (theme_get_setting('skip_navigation_display') == 'hide') {
$vars['skip_nav_class'] = 'element-invisible';
}
if (theme_get_setting('skip_navigation_display') == 'show') {
elseif (theme_get_setting('skip_navigation_display') == 'show') {
$vars['skip_nav_class'] = 'show';
}
if (theme_get_setting('skip_navigation_display') == 'focus') {
elseif (theme_get_setting('skip_navigation_display') == 'focus') {
$vars['skip_nav_class'] = 'show-on-focus';
}
......@@ -100,6 +101,7 @@ if (theme_get_setting('extra_page_classes')) {
}
$vars['classes'] = trim(implode(' ', $classes));
$vars['layout_settings'] = '';
if (theme_get_setting('layout_enable_settings') == 'on') {
$vars['at_layout_width'] = 'div.container{width:'. theme_get_setting('layout_width') .';}';
$method = theme_get_setting('layout_method');
......@@ -176,4 +178,4 @@ if ($vars['logged_in'] && theme_get_setting('at_user_menu') == 1) {
}
$vars['admin_user_menu'] = $admin_user_links;
$vars['admin_user_links'] = theme('item_list', $admin_user_links);
}
\ No newline at end of file
}
<?php // $Id$
<?php
/**
* @file
......
<?php // $Id$
<?php
/**
* @file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment