Reference11r1:Concept Fine grained function hiding: Difference between revisions

From innovaphone wiki
Jump to navigation Jump to search
Line 17: Line 17:


  config change PHONE ADMIN-UI /hide-mask <hide-mask>
  config change PHONE ADMIN-UI /hide-mask <hide-mask>
Depending on the user interface version, the available bit masks vary.  The ''old user interface'' is available on all phones up to and including firmware version 10.  The ''new user interface'' is available for the IP222, IP232 and IP111 from version 11r1 on.  Other phone models continue to use the ''old user interface''


Currently the following functions can be hidden:
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
| Function || Bit mask || Explanation || Available in ''old user interface'' || Available in ''new user interface'' || - || yes
|-
PHONE_HIDE_MM_USER_LIST         0x20000000  -- hide account-list entry from main-menu
| PHONE_HIDE_ADMIN_INFO_MAC ||0x01000000  || hide serial/mac from info screen || yes || yes
PHONE_HIDE_MM_USER_SETTINGS     0x80000000  -- hide account-settings entry from main-menu
|-
PHONE_HIDE_MM_PHONE_SETTINGS     0x40000000  -- hide phone-settings entry from main-menu
| PHONE_HIDE_ADMIN_CONFIG ||0x10000000  || hide config entries from admin-menu || yes || yes
PHONE_HIDE_MM_ADMIN             0x08000000  -- hide admin 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_MM_USER_LIST ||0x20000000  || hide account-list entry from main-menu || yes || yes
|-
PHONE_HIDE_US_PREFERENCES       0x00000100  -- hide language and clock-format from account-settings
| PHONE_HIDE_MM_USER_SETTINGS ||0x80000000  || hide account-settings entry from main-menu || yes || yes
PHONE_HIDE_US_RING_MELODY       0x00000200  -- hide ring melody from account-settings
|-
PHONE_HIDE_US_REGISTRATION       0x00001000  -- hide registration config from account-list
| PHONE_HIDE_MM_PHONE_SETTINGS ||0x40000000  || hide phone-settings entry from main-menu || yes || yes
|-
| PHONE_HIDE_MM_ADMIN ||0x08000000  || hide admin entry from main-menu || yes || yes
|-
| PHONE_HIDE_MM_FAVORITES ||0x04000000  || hide favorites entry from main-menu || - || yes
|-
| PHONE_HIDE_MM_VISIBILITY ||0x02000000  || hide visibility entry from main-menu || - || yes
|-
| PHONE_HIDE_MM_PHONEBOOK ||0x00800000  || hide phonebook entry from main-menu || - || yes
|-
|
|-
| PHONE_HIDE_US_PREFERENCES ||0x00000100  || hide language and clock-format from account-settings || yes || yes
|-
| PHONE_HIDE_US_RING_MELODY ||0x00000200  || hide ring melody from account-settings || yes || yes
|-
| PHONE_HIDE_US_REGISTRATION ||0x00001000  || hide registration config from account-list || yes || yes
|}


== Example ==
== Example ==

Revision as of 13:15, 24 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>

Depending on the user interface version, the available bit masks vary. The old user interface is available on all phones up to and including firmware version 10. The new user interface is available for the IP222, IP232 and IP111 from version 11r1 on. Other phone models continue to use the old user interface

Currently the following functions can be hidden:

Function Bit mask Explanation Available in old user interface Available in new user interface - yes
PHONE_HIDE_ADMIN_INFO_MAC 0x01000000 hide serial/mac from info screen yes yes
PHONE_HIDE_ADMIN_CONFIG 0x10000000 hide config entries from admin-menu yes yes
PHONE_HIDE_MM_USER_LIST 0x20000000 hide account-list entry from main-menu yes yes
PHONE_HIDE_MM_USER_SETTINGS 0x80000000 hide account-settings entry from main-menu yes yes
PHONE_HIDE_MM_PHONE_SETTINGS 0x40000000 hide phone-settings entry from main-menu yes yes
PHONE_HIDE_MM_ADMIN 0x08000000 hide admin entry from main-menu yes yes
PHONE_HIDE_MM_FAVORITES 0x04000000 hide favorites entry from main-menu - yes
PHONE_HIDE_MM_VISIBILITY 0x02000000 hide visibility entry from main-menu - yes
PHONE_HIDE_MM_PHONEBOOK 0x00800000 hide phonebook entry from main-menu - yes
PHONE_HIDE_US_PREFERENCES 0x00000100 hide language and clock-format from account-settings yes yes
PHONE_HIDE_US_RING_MELODY 0x00000200 hide ring melody from account-settings yes yes
PHONE_HIDE_US_REGISTRATION 0x00001000 hide registration config from account-list yes yes

Example

To hide all the functions from main menu:

  0x20000000 (hide account-list entry from main-menu)
+ 0x80000000 (hide account-settings entry from main-menu)
+ 0x40000000 (hide phone-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