+++ /dev/null
-<?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();
- }
-}
+++ /dev/null
-<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>