コード例 #1
0
ファイル: FacilityModule.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("Facility")
     $this->list_view = array(__("Name") => "psrname", __("Description") => "psrnote");
     // Run constructor
     parent::__construct();
 }
コード例 #2
0
 public function __construct()
 {
     $this->variables = array('pntname', 'pntphy', 'pnt_S', 'pnt_O', 'pnt_A', 'pnt_P', 'pnt_I', 'pnt_E', 'pnt_R');
     $this->list_view = array(__("Name") => "pntname");
     // Run parent constructor
     parent::__construct();
 }
コード例 #3
0
ファイル: ProviderModule.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("Provider")
     $this->list_view = array(__("Last Name") => "phylname", __("First Name") => "phyfname");
     // Run parent constructor
     parent::__construct();
 }
コード例 #4
0
 public function __construct()
 {
     // For i18n: __("Insurance Company Group")
     $this->list_view = array(__("Insurance Company Group") => "inscogroup");
     // Run parent constructor
     parent::__construct();
 }
コード例 #5
0
 public function __construct()
 {
     // For i18n: __("Provider Specialties")
     $this->list_view = array(__("Specialty") => "specname", __("Specialty Description") => "specdesc");
     // Call parent constructor
     parent::__construct();
 }
コード例 #6
0
 public function __construct()
 {
     // For i18n: __("Diagnosis Family")
     $this->list_view = array(__("Name") => "dfname", __("Description") => "dfdescrip");
     // Run parent constructor
     parent::__construct();
 }
コード例 #7
0
ファイル: EnclosureTypes.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("Enclosure Types")
     $this->list_view = array(__("Enclosure") => 'enclosure');
     // Run parent constructor
     parent::__construct();
 }
コード例 #8
0
ファイル: SmsProvider.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("SMS Provider")
     $this->list_view = array(__("Name") => "providername", __("Gateway") => "mailgwaddr");
     // Run parent constructor
     parent::__construct();
 }
コード例 #9
0
 public function __construct()
 {
     // __("Workflow Status Type")
     $this->list_view = array(__("Name") => "status_name", __("Order") => "status_order", __("Module") => "status_module");
     // Run parent constructor
     parent::__construct();
 }
コード例 #10
0
 public function __construct()
 {
     // For i18n: __("Scheduling Rules")
     $this->list_view = array(__("Comment") => 'reason');
     // Run parent constructor
     parent::__construct();
 }
コード例 #11
0
ファイル: RoomEquipment.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Room Equipment")
     $this->list_view = array(__("Name") => "reqname", __("Description") => "reqdescrip");
     $this->variables = array("reqname", "reqdescrip");
     parent::__construct();
 }
コード例 #12
0
 public function __construct()
 {
     // For i18n: __("Internal Service Types")
     $this->list_view = array(__("Types") => "intservtype");
     // Run parent constructor
     parent::__construct();
 }
コード例 #13
0
ファイル: RoomModule.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("Room")
     $this->list_view = array(__("Name") => "roomname", __("Description") => "roomdescrip");
     // Run constructor
     parent::__construct();
 }
コード例 #14
0
ファイル: Rules.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Rules")
     $this->list_view = array(__("Description") => 'rule_descrip', __("Priority") => 'rule_prio', __("Type") => 'rule_type');
     // Run parent constructor
     parent::__construct();
 }
コード例 #15
0
ファイル: XmrDefinition.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("XMR Definition")
     $this->list_view = array(__("Name") => "form_name", __("Language") => "form_locale");
     // Run constructor
     parent::__construct();
 }
コード例 #16
0
ファイル: PatientModule.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Patient Module")
     // DEBUG TESTING: $this->defeat_acl = true;
     // Call parent constructor
     parent::__construct();
 }
コード例 #17
0
ファイル: PatientStatus.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Patient Status")
     $this->list_view = array(__("Status") => "ptstatus", __("Description") => "ptstatusdescrip");
     // Run parent constructor
     parent::__construct();
 }
コード例 #18
0
 public function __construct()
 {
     $this->variables = array('ltname', 'ltphy', 'lttext');
     $this->list_view = array(__("Name") => "ltname");
     // Run parent constructor
     parent::__construct();
 }
コード例 #19
0
ファイル: Pharmacy.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("Pharmacies")
     $this->list_view = array(__("Name") => "phname", __("City, State") => "citystate");
     $this->additional_fields = array("CONCAT(phcity, ', ', phstate) AS citystate");
     parent::__construct();
 }
コード例 #20
0
ファイル: CoverageTypes.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Coverage Types")
     $this->list_view = array(__("Code") => "covtpname", __("Description") => "covtpdescrip");
     // Run parent constructor
     parent::__construct();
 }
コード例 #21
0
ファイル: PhoneNumbers.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Phone Numbers")
     $this->variables = array('phonelink', 'phonetype', 'phonecategory', 'phonenumber', 'phonestampadd', 'phonestampmod');
     // Call parent constructor
     parent::__construct();
 }
コード例 #22
0
ファイル: TypeOfService.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Type of Service")
     $this->list_view = array(__("Code") => "tosname", __("Description") => "tosdescrip");
     // Run parent constructor
     parent::__construct();
 }
コード例 #23
0
ファイル: Taxonomy.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("Taxonomy")
     $this->list_view = array(__("Name") => "text_name", __("Type") => "taxonomy_type", __("Code Set") => "code_set", __("Code Value") => "code_value");
     // Run constructor
     parent::__construct();
 }
コード例 #24
0
ファイル: Practices.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("Practice")
     $this->list_view = array(__("Practice Name") => "pracname", __("City") => "citya", __("State / Province") => "statea", __("NPI") => "pracnpi");
     // Run parent constructor
     parent::__construct();
 }
コード例 #25
0
ファイル: CptCodes.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     $this->variables = array("cptcode", "cptnameint", "cptnameext", "cptgender", "cpttaxed", "cpttype", "cptreqcpt", "cptexccpt", "cptreqicd", "cptexcicd", "cptrelval", "cptdeftos", "cptdefstdfee", "cptstdfee", "cpttos", "cpttosprfx", "cptarchive");
     $this->list_view = array(__("Procedural Code") => "cptcode", __("Internal Description") => "cptnameint", __("External Description") => "cptnameext");
     // Run parent constructor
     parent::__construct();
 }
コード例 #26
0
 public function __construct()
 {
     // __("Insurance Modifiers")
     $this->list_view = array(__("Modifier") => "insmod", __("Description") => "insmoddesc");
     // Run parent constructor
     parent::__construct();
 }
コード例 #27
0
 public function __construct()
 {
     $this->acl = array('bill', 'emr');
     $this->_SetHandler('Dashboard', get_class($this));
     // call parent constructor
     parent::__construct();
 }
コード例 #28
0
ファイル: FormTemplates.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // For i18n: __("Form Templates")
     $this->list_view = array(__("Name") => "f_name", __("Language") => "f_lang");
     // Run constructor
     parent::__construct();
 }
コード例 #29
0
ファイル: LogModule.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Log")
     $this->variables = array('logstamp', 'loguser', 'logpatient', 'logsystem', 'logsubsystem', 'logseverity', 'logmsg');
     // call parent constructor
     parent::__construct();
 }
コード例 #30
0
ファイル: WorkflowStatus.class.php プロジェクト: rrsc/freemed
 public function __construct()
 {
     // __("Workflow Status")
     $this->_SetHandler('Dashboard', get_class($this));
     // Run parent constructor
     parent::__construct();
 }