#29521 - Removed dashboard page.
authorManoj K <manoj.k@zyxware.com>
Mon, 15 Sep 2014 05:53:22 +0000 (11:23 +0530)
committerManoj K <manoj.k@zyxware.com>
Mon, 15 Sep 2014 05:53:22 +0000 (11:23 +0530)
CRM/Wci/Page/WCIDashboard.php [deleted file]
templates/CRM/Wci/Page/WCIDashboard.tpl [deleted file]

diff --git a/CRM/Wci/Page/WCIDashboard.php b/CRM/Wci/Page/WCIDashboard.php
deleted file mode 100644 (file)
index 2aab981..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-require_once 'CRM/Core/Page.php';
-
-class CRM_Wci_Page_WCIDashboard extends CRM_Core_Page {
-  function run() {
-    // Example: Set the page-title dynamically; alternatively, declare a static title in xml/Menu/*.xml
-    CRM_Utils_System::setTitle(ts('WCIDashboard'));
-
-    // Example: Assign a variable for use in a template
-    $this->assign('currentTime', date('Y-m-d H:i:s'));
-
-    parent::run();
-  }
-}
diff --git a/templates/CRM/Wci/Page/WCIDashboard.tpl b/templates/CRM/Wci/Page/WCIDashboard.tpl
deleted file mode 100644 (file)
index d1ab2d0..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-<h3>This new page is generated by CRM/Wci/Page/WCIDashboard.php</h3>
-
-{* Example: Display a variable directly *}
-<p>The current time is {$currentTime}</p>
-
-{* Example: Display a translated string -- which happens to include a variable *}
-<p>{ts 1=$currentTime}(In your native language) The current time is %1.{/ts}</p>