Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. admin/structure/menu/manage/mymenu
  2.  
  3. function gestionuser_preprocess_page(&$variables, $hook) {
  4. if(!empty($variables['page']['content']['system_main'])) {
  5. foreach ($variables['page']['content']['system_main'] as $key => $value) {
  6. if(is_array($value) && !empty($value['view'])) {
  7. //print '<pre>'; print_r($value['view']['#href']); print '</pre>';
  8. $value['view']['#href'] = '';
  9. $value['view']['#type'] = 'text_format';
  10. //unset($value['view']);
  11. }
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement