メニューから「Create New Resource(新規リソースを作成)」オプションを非表示にするには?
コンフィギュレーション設定を変更することで、このオプションを非表示にすることができます。
説明
IXIA CCMS Webでは、メインメニュー()の オプションを、一部またはすべてのユーザーに対して非表示にすることができます。TEXTML管理のaccessrights.xmlファイルにアクセスして、設定を更新します。
解決法
-
system/conf/accessrights.xmlで、以下のようにaccessrights.xmlに
CreateResource
メソッドを追加します:<method name="CreateResource" type="front-end"> <!-- determines if a notification email should be sent when this action is taken --> <notify enabled="false"/> <!-- To be enabled or runnable the condition set must return true --> <!-- possible operator are any (One of the condition must match)--> <conditionset operator="any"> <condition> <!-- Action user must be in this list --> <users> <roles> <!--<role name="Writer"/> <role name="Information Architect"/>--> </roles> <groups> <group name="System Administrators"/> </groups> </users> </condition> </conditionset> </method>
-
<roles>
タグと<groups>
タグで、どのロールに、どのグループに、このオプションを表示するかを定義します。例えば、このコードサンプルでは、Writer
とInformation Architect
の2つのロールをコメントアウトしているので、System Administrators
だけがこのオプションにアクセスできます。