Reference11r1:Concept Fine grained function hiding: Difference between revisions

From innovaphone wiki
Jump to navigation Jump to search
No edit summary
Line 26: Line 26:
  PHONE_HIDE_MM_USER_LIST          0x20000000  --  hide account-list entry from main-menu
  PHONE_HIDE_MM_USER_LIST          0x20000000  --  hide account-list entry from main-menu
  PHONE_HIDE_MM_PHONE_SETTINGS    0x40000000  --  hide phone-settings entry from main-menu
  PHONE_HIDE_MM_PHONE_SETTINGS    0x40000000  --  hide phone-settings entry from main-menu
  PHONE_HIDE_MM_USER_SETTINGS      0x80000000  --  hide user-settings entry from main-menu
  PHONE_HIDE_MM_USER_SETTINGS      0x80000000  --  hide account-settings entry from main-menu
  PHONE_HIDE_MM_FAVORITES          0x04000000  --  hide favorites entry from main-menu
  PHONE_HIDE_MM_FAVORITES          0x04000000  --  hide favorites entry from main-menu
  PHONE_HIDE_MM_VISIBILITY        0x02000000  --  hide visibility entry from main-menu
  PHONE_HIDE_MM_VISIBILITY        0x02000000  --  hide visibility entry from main-menu

Revision as of 10:20, 20 November 2014

This function hides certain phone functions and is used in scenarios where heavyweighted "Hide Complete Configuration at Phone" and "Hide Administration Configuration at Phone" do not exactly match the hiding principles and requirements of a customer organisation.

Applies To

This information applies to

  • IP232 V11
  • IP222 V11
  • IP111 V11

More Information

The bitmask hides certain phone functions. Use the WEB user interface and insert a hexadecimal value into the field marked "Phone/Protect/Fine grained Function Hiding".

The same information can be entered by config upload'ing the following command line:

config change PHONE ADMIN-UI /hide-mask <hide-mask>

Currently the following functions can be hidden:

PHONE_HIDE_ADMIN_INFO_MAC        0x01000000  --  hide serial/mac from info screen
PHONE_HIDE_ADMIN_CONFIG          0x10000000  --  hide config entries from admin-menu

PHONE_HIDE_MM_ADMIN              0x08000000  --  hide admin entry from main-menu
PHONE_HIDE_MM_USER_LIST          0x20000000  --  hide account-list entry from main-menu
PHONE_HIDE_MM_PHONE_SETTINGS     0x40000000  --  hide phone-settings entry from main-menu
PHONE_HIDE_MM_USER_SETTINGS      0x80000000  --  hide account-settings entry from main-menu
PHONE_HIDE_MM_FAVORITES          0x04000000  --  hide favorites entry from main-menu
PHONE_HIDE_MM_VISIBILITY         0x02000000  --  hide visibility entry from main-menu
PHONE_HIDE_MM_PHONEBOOK          0x00800000  --  hide phonebook entry from main-menu

PHONE_HIDE_US_PREFERENCES        0x00000100  --  hide language and clock-format from account-settings
PHONE_HIDE_US_RING_MELODY        0x00000200  --  hide ring melody from account-settings
PHONE_HIDE_US_REGISTRATION       0x00001000  --  hide registration config from account-list

Example

To hide all the functions from main menu:

  0x20000000 (hide account-list entry from main-menu)
+ 0x40000000 (hide phone-settings entry from main-menu)
+ 0x80000000 (hide account-settings entry from main-menu)
+ 0x08000000 (hide admin entry from main-menu)
+ 0x04000000 (hide favorites entry from main-menu)
+ 0x02000000 (hide visibility entry from main-menu)
+ 0x00800000 (hide phonebook entry from main-menu)
============
  0xEE800000 <---- hide-mask

Notes

  • Administration screen can not actually be hidden, the main manu entry "Administration" will always leave the "Information" submenu available
  • "Hide Complete Configuration at Phone" from Phone/Protect Menu is identical with hide-mask 0xFFFFFFFF.
  • "Hide Administration Configuration at Phone" from Phone/Protect Menu is identical with hide-mask 0x10000000.


Related Articles

Reference:Administration/Phone/Protect

Howto:Disable Messaging on the Phone