provide theme_init() functions
This commit is contained in:
parent
3afc9915e3
commit
741a5dba57
9 changed files with 20 additions and 0 deletions
|
@ -11,6 +11,7 @@ $a->theme_info = array(
|
|||
'extends' => 'duepuntozero',
|
||||
);
|
||||
|
||||
function darkzero_NS_init(&$a) {
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
@ -57,3 +58,4 @@ $('.savedsearchterm').hover(
|
|||
|
||||
</script>
|
||||
EOT;
|
||||
}
|
|
@ -12,6 +12,7 @@ $a->theme_info = array(
|
|||
'extends' => 'duepuntozero',
|
||||
);
|
||||
|
||||
function darkzero_init(&$a) {
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
@ -58,3 +59,4 @@ $('.savedsearchterm').hover(
|
|||
|
||||
</script>
|
||||
EOT;
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
$a->theme_info = array();
|
||||
|
||||
function duepuntozero_init(&$a) {
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
@ -47,3 +48,4 @@ $('.savedsearchterm').hover(
|
|||
|
||||
</script>
|
||||
EOT;
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ $a->theme_info = array(
|
|||
'extends' => 'duepuntozero',
|
||||
);
|
||||
|
||||
function greenzero_init(&$a) {
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
@ -49,3 +50,4 @@ $('.savedsearchterm').hover(
|
|||
|
||||
</script>
|
||||
EOT;
|
||||
}
|
|
@ -3,6 +3,7 @@ $a->theme_info = array(
|
|||
'extends' => 'duepuntozero',
|
||||
);
|
||||
|
||||
function purplezero_init(&$a) {
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
@ -49,3 +50,4 @@ $('.savedsearchterm').hover(
|
|||
|
||||
</script>
|
||||
EOT;
|
||||
}
|
|
@ -3,6 +3,7 @@ $a->theme_info = array(
|
|||
'extends' => 'duepuntozero',
|
||||
);
|
||||
|
||||
function slack_NS_init(&$a) {
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
@ -49,3 +50,4 @@ $('.savedsearchterm').hover(
|
|||
|
||||
</script>
|
||||
EOT;
|
||||
}
|
|
@ -3,6 +3,7 @@ $a->theme_info = array(
|
|||
'extends' => 'duepuntozero',
|
||||
);
|
||||
|
||||
function slackr_init(&$a) {
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
@ -49,3 +50,4 @@ $('.savedsearchterm').hover(
|
|||
|
||||
</script>
|
||||
EOT;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue