Como adiciono a tag <noscript> no <head>?

8

Se eu quiser adicionar JavaScript na tag head, eu uso drupal_add_js($js, 'inline'). Isso adicionará um <script type="text/javascript">.

Como adiciono a <noscript>tag? Eu quero adicionar o seguinte <head>também.

<noscript>
  <meta http-equiv="refresh" content="5;url=<?php echo $file ?>" />
</noscript>

BTW, eu estou usando um módulo simples para isso.

function custom_download_menu() {
    $items['download-code'] = array(
    'title callback' => 'custom_download_page_title',
    'page callback' => 'custom_download_view',
    'access arguments' => array('access content'),
    'access callback' => TRUE,
    );
    return $items;
  }

function custom_download_view() {
    $js = "var time_left = 5;
        var cinterval;

        function time_dec(){
            if(time_left > 0) time_left--;
            document.getElementById('countdown').innerHTML = 'Your download will start in ' + time_left + ' seconds...';
            if(time_left < 1){
                clearInterval(cinterval);
                window.location = '<?php echo $file ?>';
            }
        }

        cinterval = setInterval('time_dec()', 1000);";

    drupal_add_js($js, 'inline');
}
jaypabs
fonte

Respostas:

10

Você pode adicionar elementos à <head>seção de uma página da web usando drupal_add_html_head().

$target = url('enable-javascript', array('absolute' => TRUE));
$meta = array(
  '#theme' => 'html_tag',
  '#tag' => 'meta',
  '#attributes' => array(
    'http-equiv' => 'refresh',
    'content' => "2; url=$target"
  )
);
$noscript = array(
  '#theme' => 'html_tag',
  '#tag' => 'noscript',
  '#value' => drupal_render($meta)
);
drupal_add_html_head($noscript, 'noscript');

Documentação da API

Amarnath Ravikumar
fonte
2
Se você precisar adicionar uma marcação bruta, poderá usar #type => markup e #markup => your_raw_markup. Veja api.drupal.org/comment/11274#comment-11274
sanzante