negroaguila666 Posted June 8, 2015 Share Posted June 8, 2015 (edited) Como ocultar módulos recomendados para un empleado o usuario en backoffice Edited June 9, 2015 by Enrique Engblom Título y contenido totalmente en mayúsculas (see edit history) Link to comment Share on other sites More sharing options...
zamio Posted June 9, 2015 Share Posted June 9, 2015 (edited) Supongo que con un código raro de ejecución se podría hacer, pero no tengo ni idea. Se me ocurre modificar esto del fichero prestashop\admin\header.inc.php y pasarle a false: Context::getContext()->smarty->assign(array( 'navigationPipe', Configuration::get('PS_NAVIGATION_PIPE'), 'meta_title' => implode(' '.Configuration::get('PS_NAVIGATION_PIPE').' ', $title), 'display_header' => true, 'display_footer' => true, )); $dir = Context::getContext()->smarty->getTemplateDir(0).'controllers'.DIRECTORY_SEPARATOR.trim($con->override_folder, '\\/').DIRECTORY_SEPARATOR; $header_tpl = file_exists($dir.'header.tpl') ? $dir.'header.tpl' : 'header.tpl'; $tool_tpl = file_exists($dir.'page_header_toolbar.tpl') ? $dir.'page_header_toolbar.tpl' : 'page_header_toolbar.tpl'; Context::getContext()->smarty->assign(array( 'show_page_header_toolbar' => true, 'title' => implode(' '.Configuration::get('PS_NAVIGATION_PIPE').' ', $title), 'toolbar_btn' => array() Lo que también así quedaría oculto para todos. Luego he visto este trocito de codigo: if ($tabAccess['view'] !== '1') die (Tools::displayError('You do not have permission to view this.')); Creo que quiere decir que si no es el ADMIN pues salta esa alerta. Pero eso si, no se ni como lo pondría, soy de los que hace pruebas y pruebas hasta que a veces me sale "algo" Espero por lo menos que te haya dado alguna idea. Saludos. Edited June 9, 2015 by zamio (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now