本文整理匯總了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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}