first import
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
name = Skinr test base theme
|
||||
description = Test theme which acts as a base theme for other test subthemes.
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
skinr[api] = 2
|
||||
|
||||
; Information added by drupal.org packaging script on 2012-01-20
|
||||
version = "7.x-2.0-alpha1"
|
||||
core = "7.x"
|
||||
project = "skinr"
|
||||
datestamp = "1327086045"
|
||||
|
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Implements hook_skinr_skin_info().
|
||||
*/
|
||||
function skinr_test_basetheme_skinr_skin_info() {
|
||||
$skins['skinr_test_basetheme'] = array(
|
||||
'title' => 'Base theme skin',
|
||||
'default status' => 0,
|
||||
'status' => array(
|
||||
'skinr_test_basetheme' => 1,
|
||||
),
|
||||
);
|
||||
return $skins;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
name = Skinr test base theme (other)
|
||||
description = Test theme which acts as a normal base theme for other test subthemes. It does not include any skins.
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by drupal.org packaging script on 2012-01-20
|
||||
version = "7.x-2.0-alpha1"
|
||||
core = "7.x"
|
||||
project = "skinr"
|
||||
datestamp = "1327086045"
|
||||
|
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Implements hook_skinr_skin_info().
|
||||
*/
|
||||
function skinr_test_basetheme_other_skinr_skin_info() {
|
||||
$skins['skinr_test_basetheme_other'] = array(
|
||||
'title' => 'Other base theme skin',
|
||||
'default status' => 1,
|
||||
);
|
||||
return $skins;
|
||||
}
|
@@ -0,0 +1,14 @@
|
||||
name = Skinr test subtheme
|
||||
description = Test theme which uses skinr_test_basetheme as the base theme.
|
||||
core = 7.x
|
||||
base theme = skinr_test_basetheme
|
||||
hidden = TRUE
|
||||
|
||||
skinr[api] = 2
|
||||
|
||||
; Information added by drupal.org packaging script on 2012-01-20
|
||||
version = "7.x-2.0-alpha1"
|
||||
core = "7.x"
|
||||
project = "skinr"
|
||||
datestamp = "1327086045"
|
||||
|
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Implements hook_skinr_skin_info().
|
||||
*/
|
||||
function skinr_test_subtheme_skinr_skin_info() {
|
||||
$skins['skinr_test_subtheme'] = array(
|
||||
'title' => 'Subtheme skin',
|
||||
'default status' => 1,
|
||||
);
|
||||
return $skins;
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
name = Skinr test subtheme (other)
|
||||
description = Test theme which uses skinr_test_basetheme_other as the base theme. Neither include any skins.
|
||||
core = 7.x
|
||||
base theme = skinr_test_basetheme_other
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by drupal.org packaging script on 2012-01-20
|
||||
version = "7.x-2.0-alpha1"
|
||||
core = "7.x"
|
||||
project = "skinr"
|
||||
datestamp = "1327086045"
|
||||
|
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Implements hook_skinr_skin_info().
|
||||
*/
|
||||
function skinr_test_subtheme_other_skinr_skin_info() {
|
||||
$skins['skinr_test_subtheme_other'] = array(
|
||||
'title' => 'Other subtheme skin',
|
||||
'default status' => 1,
|
||||
);
|
||||
return $skins;
|
||||
}
|
Reference in New Issue
Block a user