Created
January 28, 2011 05:31
-
-
Save michaeltwofish/799879 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
Awesome stuff etc. | |
<?php $theme->add_stuff(); ?> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyTheme extends Theme | |
{ | |
public function action_init_theme() | |
{ | |
$this->add_template( 'what_you_call_the_template', dirname(__FILE__) . '/the_file.php' ); | |
} | |
public function theme_add_stuff($theme) { | |
if ($theme->request->display_home) { | |
return $theme->display('what_you_call_the_template'); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment