本文整理汇总了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);
}