diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-02-09 08:10:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-02-09 08:10:07 +0000 |
commit | c97e7fe1805d2ac0f2f3aedc89611a237f0edfdc (patch) | |
tree | 5cdabf270a8e2c08c3fce12dacfdf630ef4e49c0 /themes/xtemplate/xtemplate.theme | |
parent | 73f476a6c1109bf39f0c5551ee6ad6bc7da70e37 (diff) | |
download | brdo-c97e7fe1805d2ac0f2f3aedc89611a237f0edfdc.tar.gz brdo-c97e7fe1805d2ac0f2f3aedc89611a237f0edfdc.tar.bz2 |
- Small improvements to help people getting started with the xtemplate
theme.
Diffstat (limited to 'themes/xtemplate/xtemplate.theme')
-rw-r--r-- | themes/xtemplate/xtemplate.theme | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/themes/xtemplate/xtemplate.theme b/themes/xtemplate/xtemplate.theme index cde00817f..73b3c167a 100644 --- a/themes/xtemplate/xtemplate.theme +++ b/themes/xtemplate/xtemplate.theme @@ -2,10 +2,6 @@ class Theme_xtemplate extends BaseTheme { - var $primary_links = "edit me"; - var $secondary_links = "edit me"; - var $message = "edit me"; - function system($field) { $system["name"] = "xtemplate"; $system["description"] = "a template driven theme"; @@ -70,12 +66,10 @@ class Theme_xtemplate extends BaseTheme { $this->template->assign(array( "title" => ($title ? $title." | ". variable_get("site_name", "drupal") : variable_get("site_name", "drupal") ." | ". variable_get("site_slogan", "")), "head" => theme_head(), - "primary" => $this->primary_links, - "secondary" => $this->secondary_links + "links" => $this->links(link_page()) )); if (!arg(0)) { - $this->template->assign("message", $this->message); $this->template->parse("header.message"); } |