first import

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-08 11:40:19 +02:00
commit 1bc61b12ad
8435 changed files with 1582817 additions and 0 deletions

View File

@@ -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"

View File

@@ -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;
}

View File

@@ -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"

View File

@@ -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;
}

View File

@@ -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"

View File

@@ -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;
}

View File

@@ -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"

View File

@@ -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;
}