“如何修改FreePBX界面菜单顺序,关闭菜单”的版本间的差异

来自最权威最新完整开源SIP,语音通信,融合通信中文技术文档资料,提供详细的Asterisk Freepbx, FreeSBC, 免费会话边界控制器,网关,语音板卡,IPPBX,SBC配置资料-asterisk,freepbx,freesbc 用户手册 界面配置,呼叫路由,IVR, 网关对接,拨号规则,SIP 分机呼叫,pjsip, IVR, 录音, CDR, 队列呼叫,振铃组,CLI 命令中文资料手册
跳转至: 导航搜索
 
第1行: 第1行:
 
'''FreePBX 菜单设置'''
 
'''FreePBX 菜单设置'''
  
The "<nowiki>freepbx_menu.co</nowiki>nf" file that is usually placed in /etc/asterisk gives you the ability to customize your FreePBX modules to an extra degree. It&nbsp;is an optional configuration file used to rearrange your menu navigation&nbsp;in the FreePBX GUI. To enable it, create a new file in /etc/asterisk and name it as <nowiki>freepbx_menu.co</nowiki>nf then add&nbsp;the desired configuration.&nbsp;You must also enable the Advanced Setting "Use <nowiki>freepbx_menu.co</nowiki>nf Configuration"
+
/etc/asterisk/freepbx_menu.conf 文件可以支持用户自定义界面菜单中的一些可选选项或者重新安排菜单选项位置。 如果需要开启此功能,用户需要在/etc/asterisk 目录下创建一个新文件,命名为freepbx_menu.conf ,然后在文件中添加相应的选项,具体方式参考以下设置。当然也会必须从高级设置那里开启 "Use freepbx_menu.conf 配置选项"
  
This file provides the following options:
+
这个文件包含以下选项:
  
* Move menu items to different categories
+
* 移动菜单到不同的类别主菜单类别
* Create new Categories
+
* 创建新类别
* Rename the item/module
+
* 重新命名词条和模块名称
* Remove menu items that you don't want displayed
+
* 移除用户不需要显示的词条
* Change the sort order of items
+
* 修改词条显示顺序
  
If you create a new category called "Favorites" it will be the first tab, all others are alphabetical.
+
如果用户创建了一个新类别,例如 "Favorites"。 这个类别将显示在第一个标签,所有类别以字母顺序排列。
  
The following examples provide you with a demonstration of how you&nbsp;might go about changing a setup:
+
以下就是一个实例,用户可以参考设置:
  
* Change the category for a module
+
* 修改模块类别
 
<pre>
 
<pre>
 
[extensions]
 
[extensions]
 
 
category=Favorites
 
category=Favorites
 
</pre>
 
</pre>
* Change the category and name for a module
+
* 修改类别,重新命名一个模块
 
<pre>
 
<pre>
 
[findmefollow]
 
[findmefollow]
第27行: 第26行:
 
name=Find-Me Follow
 
name=Find-Me Follow
 
</pre>
 
</pre>
* Change the sort order and category of a module
+
* 调整顺序,模块类别
 
<pre>
 
<pre>
 
[music]
 
[music]
第33行: 第32行:
 
sort=-9
 
sort=-9
 
</pre>
 
</pre>
* Remove a module from showing up in the menu even though it is installed
+
* 移除已安装的模块,不需要显示
 
<pre>
 
<pre>
 
[wiki]
 
[wiki]
 
remove=Yes
 
remove=Yes
 
</pre>
 
</pre>

2015年11月7日 (六) 12:22的最新版本

FreePBX 菜单设置

/etc/asterisk/freepbx_menu.conf 文件可以支持用户自定义界面菜单中的一些可选选项或者重新安排菜单选项位置。 如果需要开启此功能,用户需要在/etc/asterisk 目录下创建一个新文件,命名为freepbx_menu.conf ,然后在文件中添加相应的选项,具体方式参考以下设置。当然也会必须从高级设置那里开启 "Use freepbx_menu.conf 配置选项"。

这个文件包含以下选项:

  • 移动菜单到不同的类别主菜单类别
  • 创建新类别
  • 重新命名词条和模块名称
  • 移除用户不需要显示的词条
  • 修改词条显示顺序

如果用户创建了一个新类别,例如 "Favorites"。 这个类别将显示在第一个标签,所有类别以字母顺序排列。

以下就是一个实例,用户可以参考设置:

  • 修改模块类别
[extensions]
category=Favorites
  • 修改类别,重新命名一个模块
[findmefollow]
category=Favorites
name=Find-Me Follow
  • 调整顺序,模块类别
[music]
category=Media
sort=-9
  • 移除已安装的模块,不需要显示
[wiki]
remove=Yes