当前位置: 首页>>代码示例>>PHP>>正文


PHP Util::__construct方法代码示例

本文整理汇总了PHP中Util::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Util::__construct方法的具体用法?PHP Util::__construct怎么用?PHP Util::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Util的用法示例。


在下文中一共展示了Util::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 function __construct()
 {
     parent::__construct();
     $this->cert_path = $_SERVER['DOCUMENT_ROOT'] . '/lms/custom/certificates';
     //$this->cert_path = $_SERVER['DOCUMENT_ROOT'] . '/lms/custom/my_dir/certificates';
     $this->host = $_SERVER['SERVER_NAME'];
 }
开发者ID:sirromas,项目名称:medical,代码行数:7,代码来源:Certificates.php

示例2: Payment

 function __construct()
 {
     parent::__construct();
     $this->payment = new Payment();
     $this->invoice = new Invoices();
     $this->db = new pdo_db();
 }
开发者ID:sirromas,项目名称:medical,代码行数:7,代码来源:Partial.php

示例3:

 function __construct()
 {
     global $COURSE;
     parent::__construct();
     $this->courseid = $COURSE->id;
     $this->labels_path = $_SERVER['DOCUMENT_ROOT'] . '/print';
     $this->create_scheduler_data();
 }
开发者ID:sirromas,项目名称:medical,代码行数:8,代码来源:Schedule.php

示例4:

 function __construct()
 {
     parent::__construct();
     $this->resolution_path = 'https://' . $_SERVER['SERVER_NAME'] . '/lms/custom/my/get_screen_resolution.php';
     $this->resolution_path2 = $_SERVER['SERVER_NAME'];
     $this->assignment_module = 1;
     $this->assesment_path = $_SERVER['DOCUMENT_ROOT'] . "/lms/custom/my";
     $this->create_programs_data();
 }
开发者ID:sirromas,项目名称:medical,代码行数:9,代码来源:Dashboard.php

示例5:

 function __construct()
 {
     parent::__construct();
     $this->cert_path = $_SERVER['DOCUMENT_ROOT'] . '/lms/custom/certificates';
     $this->files_path = $_SERVER['DOCUMENT_ROOT'] . '/lms/custom/reports/files';
     $this->card_report_csv_file = 'card_payments.csv';
     $this->cash_report_scv_file = 'cash_payments_csv';
     $this->cheque_report_csv_file = 'cheque_payment.csv';
     $this->refund_report_csv_file = 'refund_payments.csv';
     $this->invoice_report_csv_file = 'invoice_payments.csv';
 }
开发者ID:sirromas,项目名称:medical,代码行数:11,代码来源:Report.php

示例6:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:agldiego,项目名称:salud,代码行数:4,代码来源:Horario.class.php

示例7:

 function __construct()
 {
     parent::__construct();
     $this->sources = $this->get_users_sources();
     $this->states = $this->get_user_states();
 }
开发者ID:sirromas,项目名称:medical,代码行数:6,代码来源:Stats.php

示例8:

 /**
  * Constuctor
  */
 function __construct()
 {
     parent::__construct('Geolocation for IP', 'module_icons/geoip.png');
 }
开发者ID:sledgehammer,项目名称:geoip,代码行数:7,代码来源:GeoIPLookupUtil.php

示例9:

 function __construct()
 {
     parent::__construct();
     $this->host = $_SERVER['SERVER_NAME'];
     $this->slides_path = $_SERVER['DOCUMENT_ROOT'] . '/assets/slides';
 }
开发者ID:sirromas,项目名称:medical,代码行数:6,代码来源:Index.php

示例10:

 function __construct()
 {
     parent::__construct();
     $this->create_courses_data();
     $this->create_installment_users_data();
 }
开发者ID:sirromas,项目名称:medical,代码行数:6,代码来源:Installment.php

示例11: Invoices

 function __construct()
 {
     parent::__construct();
     $this->invoice = new Invoices();
 }
开发者ID:sirromas,项目名称:medical,代码行数:5,代码来源:Promotion.php

示例12: array

 function __construct()
 {
     parent::__construct();
     $this->modulos = array(array('Administración de Usuarios y Perfiles', USUARIOS), array('Configuración', CONFIGURACION), array('Citas', CITAS), array('Consultas', CONSULTAS), array('Admision', ADMISION), array('Reportes', REPORTES));
     sort($this->modulos);
 }
开发者ID:agldiego,项目名称:sitio,代码行数:6,代码来源:Modulo.class.php

示例13:

 function __construct()
 {
     parent::__construct();
     $this->cert_path = $_SERVER['DOCUMENT_ROOT'] . '/lms/custom/certificates';
     $this->invoice_path = $_SERVER['DOCUMENT_ROOT'] . '/lms/custom/invoices';
 }
开发者ID:sirromas,项目名称:medical,代码行数:6,代码来源:Import.php

示例14:

 function __construct($id)
 {
     parent::__construct();
     $this->category_id = $id;
 }
开发者ID:sirromas,项目名称:medical,代码行数:5,代码来源:Map.php

示例15: Certificates

 function __construct()
 {
     parent::__construct();
     $this->cert = new Certificates();
 }
开发者ID:sirromas,项目名称:medical,代码行数:5,代码来源:update.php


注:本文中的Util::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。