コード例 #1
0
 function __construct()
 {
     global $conn, $Language, $UserAgent;
     // User agent
     $UserAgent = ew_UserAgent();
     $GLOBALS["Page"] =& $this;
     // Language object
     if (!isset($Language)) {
         $Language = new cLanguage();
     }
     // Parent constuctor
     parent::__construct();
     // Table object (account)
     if (!isset($GLOBALS["account"])) {
         $GLOBALS["account"] =& $this;
         $GLOBALS["Table"] =& $GLOBALS["account"];
     }
     // Page ID
     if (!defined("EW_PAGE_ID")) {
         define("EW_PAGE_ID", 'delete', TRUE);
     }
     // Table name (for backward compatibility)
     if (!defined("EW_TABLE_NAME")) {
         define("EW_TABLE_NAME", 'account', TRUE);
     }
     // Start timer
     if (!isset($GLOBALS["gTimer"])) {
         $GLOBALS["gTimer"] = new cTimer();
     }
     // Open connection
     if (!isset($conn)) {
         $conn = ew_Connect();
     }
 }
コード例 #2
0
ファイル: accountview.php プロジェクト: Rastrian/RBAC_Manager
 function __construct()
 {
     global $conn, $Language, $UserAgent;
     // User agent
     $UserAgent = ew_UserAgent();
     $GLOBALS["Page"] =& $this;
     // Language object
     if (!isset($Language)) {
         $Language = new cLanguage();
     }
     // Parent constuctor
     parent::__construct();
     // Table object (account)
     if (!isset($GLOBALS["account"])) {
         $GLOBALS["account"] =& $this;
         $GLOBALS["Table"] =& $GLOBALS["account"];
     }
     $KeyUrl = "";
     if (@$_GET["id"] != "") {
         $this->RecKey["id"] = $_GET["id"];
         $KeyUrl .= "&id=" . urlencode($this->RecKey["id"]);
     }
     $this->ExportPrintUrl = $this->PageUrl() . "export=print" . $KeyUrl;
     $this->ExportHtmlUrl = $this->PageUrl() . "export=html" . $KeyUrl;
     $this->ExportExcelUrl = $this->PageUrl() . "export=excel" . $KeyUrl;
     $this->ExportWordUrl = $this->PageUrl() . "export=word" . $KeyUrl;
     $this->ExportXmlUrl = $this->PageUrl() . "export=xml" . $KeyUrl;
     $this->ExportCsvUrl = $this->PageUrl() . "export=csv" . $KeyUrl;
     $this->ExportPdfUrl = $this->PageUrl() . "export=pdf" . $KeyUrl;
     // Page ID
     if (!defined("EW_PAGE_ID")) {
         define("EW_PAGE_ID", 'view', TRUE);
     }
     // Table name (for backward compatibility)
     if (!defined("EW_TABLE_NAME")) {
         define("EW_TABLE_NAME", 'account', TRUE);
     }
     // Start timer
     if (!isset($GLOBALS["gTimer"])) {
         $GLOBALS["gTimer"] = new cTimer();
     }
     // Open connection
     if (!isset($conn)) {
         $conn = ew_Connect();
     }
     // Export options
     $this->ExportOptions = new cListOptions();
     $this->ExportOptions->Tag = "span";
     $this->ExportOptions->TagClassName = "ewExportOption";
 }
コード例 #3
0
ファイル: accountlist.php プロジェクト: Rastrian/RBAC_Manager
 function __construct()
 {
     global $conn, $Language, $UserAgent;
     // User agent
     $UserAgent = ew_UserAgent();
     $GLOBALS["Page"] =& $this;
     // Language object
     if (!isset($Language)) {
         $Language = new cLanguage();
     }
     // Parent constuctor
     parent::__construct();
     // Table object (account)
     if (!isset($GLOBALS["account"])) {
         $GLOBALS["account"] =& $this;
         $GLOBALS["Table"] =& $GLOBALS["account"];
     }
     // Initialize URLs
     $this->ExportPrintUrl = $this->PageUrl() . "export=print";
     $this->ExportExcelUrl = $this->PageUrl() . "export=excel";
     $this->ExportWordUrl = $this->PageUrl() . "export=word";
     $this->ExportHtmlUrl = $this->PageUrl() . "export=html";
     $this->ExportXmlUrl = $this->PageUrl() . "export=xml";
     $this->ExportCsvUrl = $this->PageUrl() . "export=csv";
     $this->ExportPdfUrl = $this->PageUrl() . "export=pdf";
     $this->AddUrl = "accountadd.php";
     $this->InlineAddUrl = $this->PageUrl() . "a=add";
     $this->GridAddUrl = $this->PageUrl() . "a=gridadd";
     $this->GridEditUrl = $this->PageUrl() . "a=gridedit";
     $this->MultiDeleteUrl = "accountdelete.php";
     $this->MultiUpdateUrl = "accountupdate.php";
     // Page ID
     if (!defined("EW_PAGE_ID")) {
         define("EW_PAGE_ID", 'list', TRUE);
     }
     // Table name (for backward compatibility)
     if (!defined("EW_TABLE_NAME")) {
         define("EW_TABLE_NAME", 'account', TRUE);
     }
     // Start timer
     if (!isset($GLOBALS["gTimer"])) {
         $GLOBALS["gTimer"] = new cTimer();
     }
     // Open connection
     if (!isset($conn)) {
         $conn = ew_Connect();
     }
     // List options
     $this->ListOptions = new cListOptions();
     $this->ListOptions->TableVar = $this->TableVar;
     // Export options
     $this->ExportOptions = new cListOptions();
     $this->ExportOptions->Tag = "span";
     $this->ExportOptions->TagClassName = "ewExportOption";
 }
コード例 #4
0
ファイル: login.php プロジェクト: Ombogo/new_api_chat
 function __construct()
 {
     global $conn, $Language;
     $GLOBALS["Page"] =& $this;
     // Language object
     if (!isset($Language)) {
         $Language = new cLanguage();
     }
     // Parent constuctor
     parent::__construct();
     // Table object (account)
     if (!isset($GLOBALS["account"]) || get_class($GLOBALS["account"]) == "caccount") {
         $GLOBALS["account"] =& $this;
         $GLOBALS["Table"] =& $GLOBALS["account"];
     }
     if (!isset($GLOBALS["account"])) {
         $GLOBALS["account"] =& $this;
     }
     // User table object (account)
     if (!isset($GLOBALS["UserTable"])) {
         $GLOBALS["UserTable"] = new caccount();
     }
     // Page ID
     if (!defined("EW_PAGE_ID")) {
         define("EW_PAGE_ID", 'login', TRUE);
     }
     // Start timer
     if (!isset($GLOBALS["gTimer"])) {
         $GLOBALS["gTimer"] = new cTimer();
     }
     // Open connection
     if (!isset($conn)) {
         $conn = ew_Connect();
     }
 }