メニューから「Create New Resource(新規リソースを作成)」オプションを非表示にするには?

コンフィギュレーション設定を変更することで、このオプションを非表示にすることができます。

説明

IXIA CCMS Webでは、メインメニュー()のNew Object(新規オブジェクト) > New Resource(新規リソース)オプションを、一部またはすべてのユーザーに対して非表示にすることができます。TEXTML管理のaccessrights.xmlファイルにアクセスして、設定を更新します。

解決法

  1. system/conf/accessrights.xmlで、以下のようにaccessrights.xmlCreateResourceメソッドを追加します:
    <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>
  2. <roles>タグと<groups>タグで、どのロールに、どのグループに、このオプションを表示するかを定義します。例えば、このコードサンプルでは、WriterInformation Architectの2つのロールをコメントアウトしているので、System Administratorsだけがこのオプションにアクセスできます。