[TYPO3] Moving phpMyAdmin to user modules

Tonix (Antonio Nati) tonix at interazioni.it
Tue Jan 22 01:43:52 CET 2008


I'm modifying phpMyAdmin, trying to carry it from "Tools" to "User" menu 
(needed for next change, relative to setting up DB access in user TSconfig).

So I changed

ext_emconf.php          
        'title' => 'Tools>phpMyAdmin',
-->
        'title' => 'User>phpMyAdmin',

ext_tables.php
        t3lib_extMgm::addModule('tools', 'txphpmyadmin', '', 
t3lib_extMgm::extPath($_EXTKEY) . 'modsub/');
-->
        t3lib_extMgm::addModule('user', 'txphpmyadmin', '', 
t3lib_extMgm::extPath($_EXTKEY) . 'modsub/');

conf.php
        $MCONF['access'] = 'admin';
        $MCONF['name'] = 'tools_txphpmyadmin';
-->
        $MCONF['access'] = 'user,group';
        $MCONF['name'] = 'user_txphpmyadmin';


Actually it works, but only for admins.
Despite I can set this module available for other users, other users do 
not see it in menu.

Any hint?

Tonino

-- 
------------------------------------------------------------
        Inter at zioni            Interazioni di Antonio Nati 
   http://www.interazioni.it      tonix at interazioni.it           
------------------------------------------------------------



More information about the TYPO3-english mailing list