Dear ilib,
sorry for the delay & thank you very much for your directions. It almost works perfectly

I ammended the code a little (w/o using my changes):
$schema['central']['website']['items']['content']= array();
$schema['central']['website']['items']['news']= array();
$schema['central']['products']['items']['categories'] = array();
$schema['central']['products']['items']['features'] = array();
$schema['central']['products']['items']['filters'] = array();
$schema['central']['products']['items']['options'] = array();
$schema['top']['administration']['items']['shippings_taxes'] = array();
$schema['top']['administration']['items']['currencies'] = array();
$schema['top']['design']['items']['file_editor'] = array();
...works nearly perfect...just the bloody "Website --> News" menu item still appears. I figured out that this is an add on using a
menu.post.php file.
Next idea:
Usage my changes add-on - might be the case that the menu.post.php within the my changes add-on is processed after the menu.post.php of the "News" add-on. In that case the "Website --> News" should not appear anymore.
Unfortunately it is not working when I use the my changes add on (it is active)...
I added added the following folder & file:
app\addons\my_changes\schemas\menu\menu.post.php
including the following coding and the menu does not change at all.....anybody an idea?
<?php
/***************************************************************************
* *
* (c) 2004 Vladimir V. Kalynyak, Alexey V. Vinokurov, Ilya M. Shalnev *
* *
* This is commercial software, only users who have purchased a valid *
* license and accept to the terms of the License Agreement can install *
* and use this program. *
* *
****************************************************************************
* PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT IN THE *
* "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
****************************************************************************/
use Tygh\Registry;
if (Registry::get('runtime.company_id')) {
$schema['central']['website']['items']['content']= array();
$schema['central']['website']['items']['news']= array();
$schema['central']['products']['items']['categories'] = array();
$schema['central']['products']['items']['features'] = array();
$schema['central']['products']['items']['filters'] = array();
$schema['central']['products']['items']['options'] = array();
$schema['top']['administration']['items']['shippings_taxes'] = array();
$schema['top']['administration']['items']['currencies'] = array();
$schema['top']['design']['items']['file_editor'] = array();
}
return $schema;