| 1 |
<?php |
<?php |
| 2 |
// $Id: template.php,v 1.2 2008/04/23 16:49:55 hswong3i Exp $ |
// $Id: template.php,v 1.2.2.1 2008/05/06 03:54:09 hswong3i Exp $ |
|
|
|
|
function interactive_media_theme() { |
|
|
return array( |
|
|
'mission' => array( |
|
|
'arguments' => array('form' => NULL), |
|
|
), |
|
|
); |
|
|
} |
|
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* Return a themed mission trail. |
* Return a themed mission trail. |
| 8 |
* a string containing the mission output, or execute PHP code snippet if |
* a string containing the mission output, or execute PHP code snippet if |
| 9 |
* mission is enclosed with <?php ?>. |
* mission is enclosed with <?php ?>. |
| 10 |
*/ |
*/ |
| 11 |
function interactive_media_mission() { |
function phptemplate_mission() { |
| 12 |
$mission = theme_get_setting('mission'); |
$mission = theme_get_setting('mission'); |
| 13 |
if (preg_match('/^<\?php/', $mission)) { |
if (preg_match('/^<\?php/', $mission)) { |
| 14 |
$mission = drupal_eval($mission); |
$mission = drupal_eval($mission); |