Как убрать meta name="Generator" content="Drupal 7 (http://drupal.org)" в Drupal 7 ?

Главные вкладки

Аватар пользователя vvv vvv 10 мая 2011 в 13:58

В 7 друпале по дефолту подставляется meta name="Generator" content="Drupal 7 (http://drupal.org)". Формируется эта гадость в файле common.inc функцией _drupal_default_html_head. Как бы ее окуратно убрать, чтобы не трогать файл common.inc и не править файл шаблона html.tpl.php? Может можно както в template.php? Или модуль написать?

Комментарии

Аватар пользователя FRESHION FRESHION 21 августа 2011 в 18:11

в друпал 7.4 пробовал работало, а вот в 7.7 сайт перестает работать, на денвере после применения данного кода - белый экран и
Parse error: syntax error, unexpected '<' in Z:\home\test1.ru\www\themes\sky\template.php on line 286
подскажите как убрать в 7.7 ?

Аватар пользователя Sywooch Sywooch 19 октября 2011 в 18:46

Работает конечно!
А вот так, можно переопределить генератор, на все че угодно.

function ВАШАТЕМА_html_head_alter(&$head_elements) {
$head_elements['system_meta_generator']['#attributes'] = array(
'name' => 'Generator',
'content' => 'ДРУПАЛ'
);
}

Аватар пользователя Ready Ready 17 января 2012 в 1:13

вставляю код

<?php
function ИМЯ_ТЕМЫ_html_head_alter(&$head_elements) {
  unset(
$head_elements['system_meta_generator']);
}
?> 

в начале template.php и не помогает. meta name="Generator" content="Drupal 7 (http://drupal.org)" по прежнему отображается. Использую Drupal 7.10
Как решить проблему ?

Аватар пользователя Ready Ready 17 января 2012 в 17:52

drupby wrote:
а кэш почистить ?
и функцию не надо в php тег оборачивать.

почистил

drupby wrote:
и функцию не надо в php тег оборачивать.

вы хотите сказать что нужно сделать вот так:

function bartik_html_head_alter(&$head_elements) {
unset($head_elements['system_meta_generator']);

а как же оно будет работать ?

Аватар пользователя Ready Ready 17 января 2012 в 18:37

Notice: Undefined variable: hide_site_name в функции include() (строка 38 в файле X:\home\real.loc\www\themes\bartik\templates\page.tpl.php).

Notice: Undefined variable: hide_site_name в функции include() (строка 48 в файле X:\home\real.loc\www\themes\bartik\templates\page.tpl.php).

Аватар пользователя Ready Ready 17 января 2012 в 18:52

drupby wrote:
в page.tpl.php что то меняли ?

нет, это произошло когда я

<?phpfunction bartik_html_head_alter(&$head_elements) {
unset($head_elements['system_meta_generator']);?>

добавил в template.php

Аватар пользователя Sywooch Sywooch 18 января 2012 в 0:52

Вот полный файл стандартного бартика template.php
Только вконце ?> уберите..
Смотрите где че не так:


<?php

function bartik_html_head_alter(&$head_elements) {
  unset(
$head_elements['system_meta_generator']);
}
/**
 * Add body classes if certain regions have content.
 */
function bartik_preprocess_html(&$variables) {
  if (!empty(
$variables['page']['featured'])) {
    
$variables['classes_array'][] = 'featured';
  }

  if (!empty(

$variables['page']['triptych_first'])
    || !empty(
$variables['page']['triptych_middle'])
    || !empty(
$variables['page']['triptych_last'])) {
    
$variables['classes_array'][] = 'triptych';
  }

  if (!empty(

$variables['page']['footer_firstcolumn'])
    || !empty(
$variables['page']['footer_secondcolumn'])
    || !empty(
$variables['page']['footer_thirdcolumn'])
    || !empty(
$variables['page']['footer_fourthcolumn'])) {
    
$variables['classes_array'][] = 'footer-columns';
  }

  

// Add conditional stylesheets for IE
  
drupal_add_css(path_to_theme() . '/css/ie.css', array('group' => CSS_THEME'browsers' => array('IE' => 'lte IE 7''!IE' => FALSE), 'preprocess' => FALSE));
  
drupal_add_css(path_to_theme() . '/css/ie6.css', array('group' => CSS_THEME'browsers' => array('IE' => 'IE 6''!IE' => FALSE), 'preprocess' => FALSE));
}

/**
 * Override or insert variables into the page template for HTML output.
 */
function bartik_process_html(&$variables) {
  
// Hook into color.module.
  
if (module_exists('color')) {
    
_color_html_alter($variables);
  }
}

/**
 * Override or insert variables into the page template.
 */
function bartik_process_page(&$variables) {
  
// Hook into color.module.
  
if (module_exists('color')) {
    
_color_page_alter($variables);
  }
  
// Always print the site name and slogan, but if they are toggled off, we'll
  // just hide them visually.
  
$variables['hide_site_name']   = theme_get_setting('toggle_name') ? FALSE TRUE;
  
$variables['hide_site_slogan'] = theme_get_setting('toggle_slogan') ? FALSE TRUE;
  if (
$variables['hide_site_name']) {
    
// If toggle_name is FALSE, the site_name will be empty, so we rebuild it.
    
$variables['site_name'] = filter_xss_admin(variable_get('site_name''Drupal'));
  }
  if (
$variables['hide_site_slogan']) {
    
// If toggle_site_slogan is FALSE, the site_slogan will be empty, so we rebuild it.
    
$variables['site_slogan'] = filter_xss_admin(variable_get('site_slogan'''));
  }
  
// Since the title and the shortcut link are both block level elements,
  // positioning them next to each other is much simpler with a wrapper div.
  
if (!empty($variables['title_suffix']['add_or_remove_shortcut']) && $variables['title']) {
    
// Add a wrapper div using the title_prefix and title_suffix render elements.
    
$variables['title_prefix']['shortcut_wrapper'] = array(
      
'#markup' => '<div class="shortcut-wrapper clearfix">',
      
'#weight' => 100,
    );
    
$variables['title_suffix']['shortcut_wrapper'] = array(
      
'#markup' => '</div>',
      
'#weight' => -99,
    );
    
// Make sure the shortcut link is the first item in title_suffix.
    
$variables['title_suffix']['add_or_remove_shortcut']['#weight'] = -100;
  }
}

/**
 * Implements hook_preprocess_maintenance_page().
 */
function bartik_preprocess_maintenance_page(&$variables) {
  if (!
$variables['db_is_active']) {
    unset(
$variables['site_name']);
  }
  
drupal_add_css(drupal_get_path('theme''bartik') . '/css/maintenance-page.css');
}

/**
 * Override or insert variables into the maintenance page template.
 */
function bartik_process_maintenance_page(&$variables) {
  
// Always print the site name and slogan, but if they are toggled off, we'll
  // just hide them visually.
  
$variables['hide_site_name']   = theme_get_setting('toggle_name') ? FALSE TRUE;
  
$variables['hide_site_slogan'] = theme_get_setting('toggle_slogan') ? FALSE TRUE;
  if (
$variables['hide_site_name']) {
    
// If toggle_name is FALSE, the site_name will be empty, so we rebuild it.
    
$variables['site_name'] = filter_xss_admin(variable_get('site_name''Drupal'));
  }
  if (
$variables['hide_site_slogan']) {
    
// If toggle_site_slogan is FALSE, the site_slogan will be empty, so we rebuild it.
    
$variables['site_slogan'] = filter_xss_admin(variable_get('site_slogan'''));
  }
}

/**
 * Override or insert variables into the node template.
 */
function bartik_preprocess_node(&$variables) {
  if (
$variables['view_mode'] == 'full' && node_is_page($variables['node'])) {
    
$variables['classes_array'][] = 'node-full';
  }
}

/**
 * Override or insert variables into the block template.
 */
function bartik_preprocess_block(&$variables) {
  
// In the header region visually hide block titles.
  
if ($variables['block']->region == 'header') {
    
$variables['title_attributes_array']['class'][] = 'element-invisible';
  }
}

/**
 * Implements theme_menu_tree().
 */
function bartik_menu_tree($variables) {
  return 
'<ul class="menu clearfix">' $variables['tree'] . '</ul>';
}

/**
 * Implements theme_field__field_type().
 */
function bartik_field__taxonomy_term_reference($variables) {
  
$output '';

  

// Render the label, if it's not hidden.
  
if (!$variables['label_hidden']) {
    
$output .= '<h3 class="field-label">' $variables['label'] . ': </h3>';
  }

  

// Render the items.
  
$output .= ($variables['element']['#label_display'] == 'inline') ? '<ul class="links inline">' '<ul class="links">';
  foreach (
$variables['items'] as $delta => $item) {
    
$output .= '<li class="taxonomy-term-reference-' $delta '"' $variables['item_attributes'][$delta] . '>' drupal_render($item) . '</li>';
  }
  
$output .= '</ul>';

  

// Render the top-level DIV.
  
$output '<div class="' $variables['classes'] . (!in_array('clearfix'$variables['classes_array']) ? ' clearfix' '') . '">' $output '</div>';

  return 

$output;
}

?>
Аватар пользователя XDmitry XDmitry 21 февраля 2013 в 2:05

Для D7 в template.php:

/**
* Implements theme_html_head_alter().
* Removes the Generator tag from the head for Drupal 7
*/

function MYTHEME_html_head_alter(&$head_elements) {
    unset($head_elements['system_meta_generator']);
}
Аватар пользователя dretro dretro 16 июня 2013 в 23:57

Если не помогает

function MYTHEME_html_head_alter(&$head_elements) {
    unset($head_elements['system_meta_generator']);
}

пробуете так

function MYTHEME_html_head_alter(&$head_elements) {
  unset($head_elements['metatag_generator']);
}

у меня работает именно второй вариант

Аватар пользователя ormato ormato 9 октября 2015 в 14:15
1

dretro wrote:
Если не помогает

function MYTHEME_html_head_alter(&$head_elements) {
    unset($head_elements['system_meta_generator']);
}

пробуете так

function MYTHEME_html_head_alter(&$head_elements) {
  unset($head_elements['metatag_generator']);
}

у меня работает именно второй вариант

В моем случае не работает ни тот ни другой ибо после того как задебажил и посмотрел что там вообще есть то у меня получился третий вариант который работает именно у меня.

function MYTHEME_html_head_alter(&$head_elements) {
    unset($head_elements['metatag_generator_0']);
}
Аватар пользователя SajtWeb SajtWeb 7 марта 2014 в 13:03

Подтверждаю, у кого был поставлен модуль metatag надо использовать:
function MYTHEME_html_head_alter(&$head_elements) {
unset($head_elements['metatag_generator']);
}

А у кого не был поставлен, то первый вариант. Спасибо.

Аватар пользователя Никки Никки 11 марта 2015 в 17:45

Модуль metatag установлен.
Но ни тот, ни другой вариант не работает в 7.34 Sad И даже оба варианта вместе.
Кэш чистился.
Есть мысли?

Аватар пользователя vvv369 vvv369 14 апреля 2015 в 17:47

В template.php функция MYTHEME_html_head_alter(&$head_elements) должна вызываться только один раз. То есть если она в этом файле уже есть, просто добавьте в ее тело строку
unset($head_elements['metatag_generator']);
а повторно эту функцию вызывать не надо!
И все прекрасно заработает без всяких модулей и чисток кэша.