diff --git a/contrib/oldtips/.main.php.swp b/contrib/oldtips/.main.php.swp deleted file mode 100644 index 43f45cf6..00000000 Binary files a/contrib/oldtips/.main.php.swp and /dev/null differ diff --git a/contrib/oldtips/main.php b/contrib/oldtips/main.php deleted file mode 100644 index c963cf68..00000000 --- a/contrib/oldtips/main.php +++ /dev/null @@ -1,29 +0,0 @@ - - * License: GPLv2 - * Description: Show a random line of text in the subheader space - * Documentation: - * Formatting is done with bbcode - */ - -class Tips extends SimpleExtension { - public function onPostListBuilding($event) { - global $config, $page; - if(strlen($config->get_string("tips_text")) > 0) { - $tips = $config->get_string("tips_text"); - $tips = preg_replace("/\n+/", "\n", $tips); - $lines = explode("\n", $tips); - $line = $lines[array_rand($lines)]; - $this->theme->display_tip(format_text($line)); - } - } - - public function onSetupBuilding($event) { - $sb = new SetupBlock("Tips"); - $sb->add_longtext_option("tips_text"); - $event->panel->add_block($sb); - } -} -?> diff --git a/contrib/oldtips/main.php~ b/contrib/oldtips/main.php~ deleted file mode 100644 index 24db4dea..00000000 --- a/contrib/oldtips/main.php~ +++ /dev/null @@ -1,30 +0,0 @@ - - * License: GPLv2 - * Description: Show a random line of text in the subheader space - * Documentation: - * Formatting is done with bbcode - */ - -class Tips extends SimpleExtension { - public function onPostListBuilding($event) { - global $config, $page; - if(strlen($config->get_string("tips_text")) > 0) { - $icon = null; - $tips = $config->get_string("tips_text"); - $tips = preg_replace("/\n+/", "\n", $tips); - $lines = explode("\n", $tips); - $line = $lines[array_rand($lines)]; - $this->theme->display_tip(format_text($line)); - } - } - - public function onSetupBuilding($event) { - $sb = new SetupBlock("Tips"); - $sb->add_longtext_option("tips_text"); - $event->panel->add_block($sb); - } -} -?> diff --git a/contrib/oldtips/test.php b/contrib/oldtips/test.php deleted file mode 100644 index bdc2125d..00000000 --- a/contrib/oldtips/test.php +++ /dev/null @@ -1,23 +0,0 @@ -log_in_as_admin(); - - $this->get_page("setup"); - $this->setField("_config_tips_text", "alert:kittens"); - $this->click("Save Settings"); - - $this->get_page("post/list"); - $this->assertText("kittens"); - - $this->get_page("setup"); - $this->setField("_config_news_text", ""); - $this->click("Save Settings"); - - $this->get_page("post/list"); - $this->assertNoText("kittens"); - - $this->log_out(); - } -} -?> diff --git a/contrib/oldtips/theme.php b/contrib/oldtips/theme.php deleted file mode 100644 index 1aa0bb38..00000000 --- a/contrib/oldtips/theme.php +++ /dev/null @@ -1,9 +0,0 @@ -add_block(new Block(null, $text, "main", 5)); - } -} -?>