| 123456789101112131415161718192021222324252627282930313233343536373839 | ##########################################################################################      _                _                                  _                     _   __| | _____   _____| | ___  _ __  _ __ ___   ___ _ __ | |_    __ _  ___  ___| | _____  / _` |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __|  / _` |/ _ \/ _ \ |/ / __| | (_| |  __/\ V /  __/ | (_) | |_) | | | | | |  __/ | | | |_  | (_| |  __/  __/   <\__ \  \__,_|\___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__|  \__, |\___|\___|_|\_\___/                              |_|                               |___/######################################################################################################################################################################################### Omega Theme##########################################################################################Informational:  http://himer.us/omega960Documentation:  http://himer.us/omega-docsProject Page:   http://drupal.org/project/omegaIssue Queue:    http://drupal.org/project/issues/omegaUsage Stats:    http://drupal.org/project/usage/omegaTwitter:        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.incTEMPLATE_preprocess_page() = preprocess-page.incTEMPLATE_preprocess_node() = preprocess-node.incTEMPLATE_preprocess_comment() = preprocess-comment.incTEMPLATE_preprocess_region() = preprocess-region.incetc.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}
 |