first import
This commit is contained in:
23
sites/all/modules/omega_tools/default/css/README.txt
Normal file
23
sites/all/modules/omega_tools/default/css/README.txt
Normal file
@@ -0,0 +1,23 @@
|
||||
##########################################################################################
|
||||
_ _ _ _
|
||||
__| | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ __ _ ___ ___| | _____
|
||||
/ _` |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| / _` |/ _ \/ _ \ |/ / __|
|
||||
| (_| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | (_| | __/ __/ <\__ \
|
||||
\__,_|\___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| \__, |\___|\___|_|\_\___/
|
||||
|_| |___/
|
||||
##########################################################################################
|
||||
|
||||
##########################################################################################
|
||||
##### Omega Theme
|
||||
##########################################################################################
|
||||
Informational: http://himer.us/omega960
|
||||
Documentation: http://himer.us/omega-docs
|
||||
Project Page: http://drupal.org/project/omega
|
||||
Issue Queue: http://drupal.org/project/issues/omega
|
||||
Usage Stats: http://drupal.org/project/usage/omega
|
||||
Twitter: http://twitter.com/Omeglicon
|
||||
##########################################################################################
|
||||
##### CSS Files
|
||||
##########################################################################################
|
||||
|
||||
Any custom CSS files should be placed in this folder.
|
7
sites/all/modules/omega_tools/default/default.pattern
Normal file
7
sites/all/modules/omega_tools/default/default.pattern
Normal file
@@ -0,0 +1,7 @@
|
||||
name = Default pattern
|
||||
description = This pattern will be used if no starterkit was selected
|
||||
core = 7.x
|
||||
engine = phptemplate
|
||||
screenshot = screenshot.png
|
||||
base theme = omega
|
||||
version = 1.x
|
BIN
sites/all/modules/omega_tools/default/logo.png
Normal file
BIN
sites/all/modules/omega_tools/default/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.7 KiB |
39
sites/all/modules/omega_tools/default/preprocess/README.txt
Normal file
39
sites/all/modules/omega_tools/default/preprocess/README.txt
Normal file
@@ -0,0 +1,39 @@
|
||||
##########################################################################################
|
||||
_ _ _ _
|
||||
__| | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ __ _ ___ ___| | _____
|
||||
/ _` |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| / _` |/ _ \/ _ \ |/ / __|
|
||||
| (_| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | (_| | __/ __/ <\__ \
|
||||
\__,_|\___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| \__, |\___|\___|_|\_\___/
|
||||
|_| |___/
|
||||
##########################################################################################
|
||||
|
||||
##########################################################################################
|
||||
##### Omega Theme
|
||||
##########################################################################################
|
||||
Informational: http://himer.us/omega960
|
||||
Documentation: http://himer.us/omega-docs
|
||||
Project Page: http://drupal.org/project/omega
|
||||
Issue Queue: http://drupal.org/project/issues/omega
|
||||
Usage Stats: http://drupal.org/project/usage/omega
|
||||
Twitter: http://twitter.com/Omeglicon
|
||||
##########################################################################################
|
||||
##### Preprocess Hooks
|
||||
##########################################################################################
|
||||
|
||||
Any custom preprocess functionality can (rather than directly in template.php) be placed
|
||||
in this preprocess folder in a file named as such:
|
||||
|
||||
TEMPLATE_preprocess_html() = preprocess-html.inc
|
||||
TEMPLATE_preprocess_page() = preprocess-page.inc
|
||||
TEMPLATE_preprocess_node() = preprocess-node.inc
|
||||
TEMPLATE_preprocess_comment() = preprocess-comment.inc
|
||||
TEMPLATE_preprocess_region() = preprocess-region.inc
|
||||
etc.
|
||||
|
||||
Inside of your preprocess-HOOK.inc files, you can either directly dump the PHP code as it
|
||||
would normally appear INSIDE of a preprocess function, or you can optionally (recommended)
|
||||
wrap the code in a custom hook for Alpha/Omega as such:
|
||||
|
||||
function THEMENAME_alpha_preprocess_HOOK(&$vars) {
|
||||
// custom functionality here
|
||||
}
|
39
sites/all/modules/omega_tools/default/process/README.txt
Normal file
39
sites/all/modules/omega_tools/default/process/README.txt
Normal file
@@ -0,0 +1,39 @@
|
||||
##########################################################################################
|
||||
_ _ _ _
|
||||
__| | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ __ _ ___ ___| | _____
|
||||
/ _` |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| / _` |/ _ \/ _ \ |/ / __|
|
||||
| (_| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | (_| | __/ __/ <\__ \
|
||||
\__,_|\___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| \__, |\___|\___|_|\_\___/
|
||||
|_| |___/
|
||||
##########################################################################################
|
||||
|
||||
##########################################################################################
|
||||
##### Omega Theme
|
||||
##########################################################################################
|
||||
Informational: http://himer.us/omega960
|
||||
Documentation: http://himer.us/omega-docs
|
||||
Project Page: http://drupal.org/project/omega
|
||||
Issue Queue: http://drupal.org/project/issues/omega
|
||||
Usage Stats: http://drupal.org/project/usage/omega
|
||||
Twitter: http://twitter.com/Omeglicon
|
||||
##########################################################################################
|
||||
##### Process Hooks
|
||||
##########################################################################################
|
||||
|
||||
Any custom process functionality can (rather than directly in template.php) be placed
|
||||
in this process folder in a file named as such:
|
||||
|
||||
TEMPLATE_process_html() = process-html.inc
|
||||
TEMPLATE_process_page() = process-page.inc
|
||||
TEMPLATE_process_node() = process-node.inc
|
||||
TEMPLATE_process_comment() = process-comment.inc
|
||||
TEMPLATE_process_region() = process-region.inc
|
||||
etc.
|
||||
|
||||
Inside of your process-HOOK.inc files, you can either directly dump the PHP code as it
|
||||
would normally appear INSIDE of a process function, or you can optionally (recommended)
|
||||
wrap the code in a custom hook for Alpha/Omega as such:
|
||||
|
||||
function THEMENAME_alpha_process_HOOK(&$vars) {
|
||||
// custom functionality here
|
||||
}
|
BIN
sites/all/modules/omega_tools/default/screenshot.png
Normal file
BIN
sites/all/modules/omega_tools/default/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
12
sites/all/modules/omega_tools/default/template.php
Normal file
12
sites/all/modules/omega_tools/default/template.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* This file is empty by default because the base theme chain (Alpha & Omega) provides
|
||||
* all the basic functionality. However, in case you wish to customize the output that Drupal
|
||||
* generates through Alpha & Omega this file is a good place to do so.
|
||||
*
|
||||
* Alpha comes with a neat solution for keeping this file as clean as possible while the code
|
||||
* for your subtheme grows. Please read the README.txt in the /preprocess and /process subfolders
|
||||
* for more information on this topic.
|
||||
*/
|
26
sites/all/modules/omega_tools/default/templates/README.txt
Normal file
26
sites/all/modules/omega_tools/default/templates/README.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
##########################################################################################
|
||||
_ _ _ _
|
||||
__| | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ __ _ ___ ___| | _____
|
||||
/ _` |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| / _` |/ _ \/ _ \ |/ / __|
|
||||
| (_| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | (_| | __/ __/ <\__ \
|
||||
\__,_|\___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| \__, |\___|\___|_|\_\___/
|
||||
|_| |___/
|
||||
##########################################################################################
|
||||
|
||||
##########################################################################################
|
||||
##### Omega Theme
|
||||
##########################################################################################
|
||||
Informational: http://himer.us/omega960
|
||||
Documentation: http://himer.us/omega-docs
|
||||
Project Page: http://drupal.org/project/omega
|
||||
Issue Queue: http://drupal.org/project/issues/omega
|
||||
Usage Stats: http://drupal.org/project/usage/omega
|
||||
Twitter: http://twitter.com/Omeglicon
|
||||
##########################################################################################
|
||||
|
||||
The templates folder is here to organize any custom templates you have for your subhteme.
|
||||
The HTML5 Starterkit (and subthemes) uses all default templates in the Omega base theme,
|
||||
and is why this directory is empty.
|
||||
|
||||
Any page, node, etc. templates you need to customize can be copied here, and customized
|
||||
accordingly.
|
Reference in New Issue
Block a user