當前位置: 首頁>>代碼示例>>PHP>>正文


PHP module::set_menu方法代碼示例

本文整理匯總了PHP中module::set_menu方法的典型用法代碼示例。如果您正苦於以下問題:PHP module::set_menu方法的具體用法?PHP module::set_menu怎麽用?PHP module::set_menu使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在module的用法示例。


在下文中一共展示了module::set_menu方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: init_menu

 function init_menu()
 {
     if (func_num_args() > 0) {
         $arg_list = func_get_args();
     }
     module::set_menu($this->module, "Health Facility", "LIBRARIES", "_health_facility");
     module::set_detail($this->description, $this->version, $this->author, $this->module);
 }
開發者ID:alisonperez,項目名稱:chits,代碼行數:8,代碼來源:class.health_facility.php

示例2: init_menu

	/**
	 * Initilize Menu
	 * 
	 * Sets Menu Entried and detail
	 */
	function init_menu() {
        if (func_num_args()>0) {
            $arg_list = func_get_args();
        }

        module::set_menu($this->module, "Export Records", "SUPPORT", "_export");
        module::set_detail($this->description, $this->version, $this->author, $this->module);
	}
開發者ID:BackupTheBerlios,項目名稱:chits-svn,代碼行數:13,代碼來源:class.exporter.php

示例3: init_menu

 function init_menu()
 {
     if (func_num_args() > 0) {
         $arg_list = func_get_args();
     }
     module::set_menu($this->module, "Alert Types", "LIBRARIES", "_alert_type");
     module::set_menu($this->module, "Alerts", "CONSULTS", "_alert");
     module::set_detail($this->description, $this->version, $this->author, $this->module);
 }
開發者ID:alisonperez,項目名稱:chits,代碼行數:9,代碼來源:class.alert.php

示例4: init_menu

	/**
	 * Initilize Menu
	 * 
	 * Sets Menu Entried and detail
	 */
    function init_menu() {
        if (func_num_args()>0) {
            $arg_list = func_get_args();
        }

        module::set_menu($this->module, "Complaint", "LIBRARIES", "_complaint");
        module::set_detail($this->description, $this->version, $this->author, $this->module);

    }
開發者ID:BackupTheBerlios,項目名稱:chits-svn,代碼行數:14,代碼來源:class.complaint.php

示例5: init_menu

 function init_menu()
 {
     if (func_num_args() > 0) {
         $arg_list = func_get_args();
         $module_id = $arg_list[0];
     }
     module::set_menu($this->module, "History Questions", "LIBRARIES", "_questions");
     module::set_menu($this->module, "Question Category", "LIBRARIES", "_questioncat");
     module::set_menu($this->module, "Complaint Questions", "SUPPORT", "_complaint_questions");
     // put in more details
     module::set_detail($this->description, $this->version, $this->author, $this->module);
 }
開發者ID:wahgithub,項目名稱:chits_wah_emr,代碼行數:12,代碼來源:class.history.php

示例6: init_menu

 function init_menu()
 {
     if (func_num_args() > 0) {
         $arg_list = func_get_args();
     }
     module::set_menu($this->module, "Alert Types", "LIBRARIES", "_alert_type");
     module::set_menu($this->module, "Alerts", "CONSULTS", "_alert");
     module::set_menu($this->module, "SMS Alerts Configuration", "LIBRARIES", "_sms_config");
     module::set_menu($this->module, "SMS Patient Enrollment", "LIBRARIES", "_sms_enroll");
     module::set_menu($this->module, "SMS Alerts", "CONSULTS", "_sms_alert");
     module::set_detail($this->description, $this->version, $this->author, $this->module);
 }
開發者ID:wahgithub,項目名稱:chits_wah_emr,代碼行數:12,代碼來源:class.alert.php

示例7: init_menu

 function init_menu()
 {
     //
     // menu entries
     // use multiple inserts (watch out for ;)
     //
     if (func_num_args() > 0) {
         $arg_list = func_get_args();
     }
     module::set_menu($this->module, "Reminder Templates", "LIBRARIES", "_sms_template");
     // put in more details
     module::set_detail($this->description, $this->version, $this->author, $this->module);
 }
開發者ID:wahgithub,項目名稱:chits_wah_emr,代碼行數:13,代碼來源:class.reminder.php

示例8: init_menu

 function init_menu()
 {
     // use this for updating menu system
     if (func_num_args() > 0) {
         $arg_list = func_get_args();
     }
     // menu entries
     module::set_menu($this->module, "Occupation", "LIBRARIES", "_occupation");
     module::set_menu($this->module, "Occupation Category", "LIBRARIES", "_occupation_cat");
     module::set_menu($this->module, "Occupation", "STATS", "_occupation_stats");
     // add more detail
     module::set_detail($this->description, $this->version, $this->author, $this->module);
 }
開發者ID:wahgithub,項目名稱:chits_wah_emr,代碼行數:13,代碼來源:class.occupation.php

示例9: init_menu

    function init_menu() {
        if (func_num_args()>0) {
            $arg_list = func_get_args();
            $module_id = $arg_list[0];
        }
        //module::set_menu($this->module, "Philhealth Card", "PATIENTS", "_philhealth_patient");
        module::set_menu($this->module, "Philhealth Report", "STATS", "_philhealth_report");
        module::set_menu($this->module, "Philhealth Labs", "LIBRARIES", "_philhealth_labs");
        module::set_menu($this->module, "Philhealth Services", "LIBRARIES", "_philhealth_services");

        // put in more details
        module::set_detail($this->description, $this->version, $this->author, $this->module);
    }
開發者ID:BackupTheBerlios,項目名稱:chits-svn,代碼行數:13,代碼來源:class.philhealth.php

示例10: init_menu

 function init_menu()
 {
     //
     // menu entries
     // use multiple inserts (watch out for ;)
     //
     if (func_num_args() > 0) {
         $arg_list = func_get_args();
     }
     module::set_menu($this->module, "News Archive", "CONTENT", "_news_archive");
     module::set_menu($this->module, "Frontpage News", "CONTENT", "_news");
     // put in more details
     module::set_detail($this->description, $this->version, $this->author, $this->module);
 }
開發者ID:alisonperez,項目名稱:chits,代碼行數:14,代碼來源:class.news.php


注:本文中的module::set_menu方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。