Wie füge ich das <noscript> -Tag in <head> hinzu?

8

Wenn ich dem Head-Tag JavaScript hinzufügen möchte, verwende ich drupal_add_js($js, 'inline'). Dies wird eine hinzufügen <script type="text/javascript">.

Wie füge ich das <noscript>Tag hinzu? Ich möchte auch Folgendes hinzufügen <head>.

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

Übrigens verwende ich dafür ein einfaches Modul.

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
quelle

Antworten:

10

Sie können dem <head>Abschnitt einer Webseite mithilfe von Elemente hinzufügen 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');

API-Dokumentation

Amarnath Ravikumar
quelle
2
Wenn Sie Roh-Markup hinzufügen müssen, können Sie #type => markup und #markup => your_raw_markup verwenden. Siehe api.drupal.org/comment/11274#comment-11274
sanzante