| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/administrator/components/com_staffmaster/tables/ |
Upload File : |
<?php
/**
* File: staff.php
*
* Staff Master 0.7.5.5
*
* Staff Master - Staff Members and Departments Manager
*
* @version 0.7.5.5
* @package StaffMaster_0_7_5_5
* @subpackage admin
* @copyright (C) 2007-2008 Travis Hubbard
* @license http://www.gnu.org/licenses/ GNU/GPL v3
* @link http://www.systemsunited.net/
**/
defined('_JEXEC') or die('Restricted access');
/**
* Staff Table Class
* @package StaffMaster_0_7_0_4
*/
class TableStaff extends JTable {
/**
* Primary Key: id
*
* @access private
* @var int smallint( 5 )
*/
var $id = null;
/**
* Stores Staff Names
*
* @access private
* @var string varchar( 255 )
**/
var $name = null;
/**
* Stores a user-entered alias for the staff name used in links for SEF linking,
* Otherwise lower-case staff name and hyphenate any spaces
*
* @access private
* @var string varchar( 255 )
*/
var $alias = null;
/**
* The department ID this staff member belongs to
*
* @access private
* @var tinyint tinyint( 4 )
**/
var $dept_id = null;
/**
* Staff member's position or title within the organization
*
* @access private
* @var string varchar( 255 )
**/
var $title = null;
/**
* Stores staff member biography
*
* @access private
* @var text
**/
var $bio = null;
/**
* Stores the file name for the staff members pic
*
* @access private
* @var string varchar( 255 )
**/
var $image_file_name = null;
/**
* Which order this staff member is displayed in 1 = first
*
* @access private
* @var int smallint( 5 )
**/
var $ordering = null;
/**
* On/Off: display this staff member
*
* @access private
* @var int tinyint( 1 )
**/
var $published = null;
/**
* Staff Member's Contact Details: phone #
*
* @access private
* @var string varhchar( 25 )
**/
var $phone1 = null;
/**
* Staff Member's Contact Details: extension if any for phone1
*
* @access private
* @var string varhchar( 10 )
**/
var $ext1 = null;
/**
* Staff Member's Contact Details: alternate phone #
*
* @access private
* @var string varhchar( 25 )
**/
var $phone2 = null;
/**
* Staff Member's Contact Details: extension if any for phone2
*
* @access private
* @var string varhchar( 10 )
**/
var $ext2 = null;
/**
* Staff Member's Contact Details: email address
*
* @access private
* @var string varhchar( 50 )
**/
var $email = null;
/**
* Staff Member's Contact Details: address line 1
*
* @access private
* @var string varhchar( 100 )
**/
var $address1 = null;
/**
* Staff Member's Contact Details: address line 2
*
* @access private
* @var string varhchar( 100 )
**/
var $address2 = null;
/**
* Staff Member's Contact Details: address line 3
*
* @access private
* @var string varhchar( 100 )
**/
var $address3 = null;
/**
* Staff Member's Contact Details: address line 4
*
* @access private
* @var string varhchar( 100 )
**/
var $address4 = null;
/**
* Constructor
*
* @param object Database connector object
*/
function __construct(&$db) {
parent::__construct( '#__staff', 'id', $db );
}
}
?>