function __construct() { global $conn, $Language; global $UserTable, $UserTableConn; $GLOBALS["Page"] =& $this; $this->TokenTimeout = ew_SessionTimeoutTime(); // Language object if (!isset($Language)) { $Language = new cLanguage(); } // Parent constuctor parent::__construct(); // Table object (nos_members) if (!isset($GLOBALS["nos_members"]) || get_class($GLOBALS["nos_members"]) == "cnos_members") { $GLOBALS["nos_members"] =& $this; $GLOBALS["Table"] =& $GLOBALS["nos_members"]; } // 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 = "nos_membersadd.php"; $this->InlineAddUrl = $this->PageUrl() . "a=add"; $this->GridAddUrl = $this->PageUrl() . "a=gridadd"; $this->GridEditUrl = $this->PageUrl() . "a=gridedit"; $this->MultiDeleteUrl = "nos_membersdelete.php"; $this->MultiUpdateUrl = "nos_membersupdate.php"; // Table object (nos_roster_admin) if (!isset($GLOBALS['nos_roster_admin'])) { $GLOBALS['nos_roster_admin'] = new cnos_roster_admin(); } // 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", 'nos_members', TRUE); } // Start timer if (!isset($GLOBALS["gTimer"])) { $GLOBALS["gTimer"] = new cTimer(); } // Open connection if (!isset($conn)) { $conn = ew_Connect($this->DBID); } // User table object (nos_roster_admin) if (!isset($UserTable)) { $UserTable = new cnos_roster_admin(); $UserTableConn = Conn($UserTable->DBID); } // List options $this->ListOptions = new cListOptions(); $this->ListOptions->TableVar = $this->TableVar; // Export options $this->ExportOptions = new cListOptions(); $this->ExportOptions->Tag = "div"; $this->ExportOptions->TagClassName = "ewExportOption"; // Other options $this->OtherOptions['addedit'] = new cListOptions(); $this->OtherOptions['addedit']->Tag = "div"; $this->OtherOptions['addedit']->TagClassName = "ewAddEditOption"; $this->OtherOptions['detail'] = new cListOptions(); $this->OtherOptions['detail']->Tag = "div"; $this->OtherOptions['detail']->TagClassName = "ewDetailOption"; $this->OtherOptions['action'] = new cListOptions(); $this->OtherOptions['action']->Tag = "div"; $this->OtherOptions['action']->TagClassName = "ewActionOption"; // Filter options $this->FilterOptions = new cListOptions(); $this->FilterOptions->Tag = "div"; $this->FilterOptions->TagClassName = "ewFilterOption fnos_memberslistsrch"; // List actions $this->ListActions = new cListActions(); }
function __construct() { global $conn, $Language; global $UserTable, $UserTableConn; $GLOBALS["Page"] =& $this; $this->TokenTimeout = ew_SessionTimeoutTime(); // Language object if (!isset($Language)) { $Language = new cLanguage(); } // Parent constuctor parent::__construct(); // Table object (nos_members) if (!isset($GLOBALS["nos_members"]) || get_class($GLOBALS["nos_members"]) == "cnos_members") { $GLOBALS["nos_members"] =& $this; $GLOBALS["Table"] =& $GLOBALS["nos_members"]; } // Table object (nos_roster_admin) if (!isset($GLOBALS['nos_roster_admin'])) { $GLOBALS['nos_roster_admin'] = new cnos_roster_admin(); } // Page ID if (!defined("EW_PAGE_ID")) { define("EW_PAGE_ID", 'edit', TRUE); } // Table name (for backward compatibility) if (!defined("EW_TABLE_NAME")) { define("EW_TABLE_NAME", 'nos_members', TRUE); } // Start timer if (!isset($GLOBALS["gTimer"])) { $GLOBALS["gTimer"] = new cTimer(); } // Open connection if (!isset($conn)) { $conn = ew_Connect($this->DBID); } // User table object (nos_roster_admin) if (!isset($UserTable)) { $UserTable = new cnos_roster_admin(); $UserTableConn = Conn($UserTable->DBID); } }
function __construct() { global $conn, $Language; global $UserTable, $UserTableConn; $GLOBALS["Page"] =& $this; $this->TokenTimeout = ew_SessionTimeoutTime(); // Language object if (!isset($Language)) { $Language = new cLanguage(); } // Parent constuctor parent::__construct(); // Table object (nos_members) if (!isset($GLOBALS["nos_members"]) || get_class($GLOBALS["nos_members"]) == "cnos_members") { $GLOBALS["nos_members"] =& $this; $GLOBALS["Table"] =& $GLOBALS["nos_members"]; } $KeyUrl = ""; if (@$_GET["memberID"] != "") { $this->RecKey["memberID"] = $_GET["memberID"]; $KeyUrl .= "&memberID=" . urlencode($this->RecKey["memberID"]); } $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; // Table object (nos_roster_admin) if (!isset($GLOBALS['nos_roster_admin'])) { $GLOBALS['nos_roster_admin'] = new cnos_roster_admin(); } // 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", 'nos_members', TRUE); } // Start timer if (!isset($GLOBALS["gTimer"])) { $GLOBALS["gTimer"] = new cTimer(); } // Open connection if (!isset($conn)) { $conn = ew_Connect($this->DBID); } // User table object (nos_roster_admin) if (!isset($UserTable)) { $UserTable = new cnos_roster_admin(); $UserTableConn = Conn($UserTable->DBID); } // Export options $this->ExportOptions = new cListOptions(); $this->ExportOptions->Tag = "div"; $this->ExportOptions->TagClassName = "ewExportOption"; // Other options $this->OtherOptions['action'] = new cListOptions(); $this->OtherOptions['action']->Tag = "div"; $this->OtherOptions['action']->TagClassName = "ewActionOption"; $this->OtherOptions['detail'] = new cListOptions(); $this->OtherOptions['detail']->Tag = "div"; $this->OtherOptions['detail']->TagClassName = "ewDetailOption"; }