码迷,mamicode.com
首页 > 其他好文 > 详细

common.inc drupal

时间:2015-08-20 18:23:25      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

    $attributes =  array(‘a‘=>‘b‘,‘c‘=>‘d‘);
    $attr = drupal_attributes($attributes);
    dpm($attr);

 a="b" c="d"

    $attributes =  array(‘a‘=>‘b‘,‘c‘=>‘d‘);    
    $attr = drupal_http_header_attributes($attributes);
    dpm($attr);

 a="b"; c="d"

 

    global $language_url;
    dpm($language_url);

 技术分享

bool is_scalar ( mixed $var )
如果给出的变量参数 var 是一个标量,is_scalar() 返回 TRUE,否则返回 FALSE
标量变量是指那些包含了 integerfloatstringboolean的变量,而 arrayobjectresource 则不是标量。

 

$path =   drupal_get_filename(‘theme‘, ‘qps_custom_kit‘);
dpm($path);

 空白.....

    $elements = array(
        ‘#type‘ => ‘html_tag‘,
        ‘#tag‘ => ‘meta‘,
        ‘#attributes‘ => array(
            ‘name‘ => ‘TO FIGHT‘,
            ‘content‘ => ‘Drupal 10‘,
        ),
    );

    drupal_add_html_head($elements,‘QQ‘);
// 通过这个方式可以新添head......

 

common.inc drupal

标签:

原文地址:http://www.cnblogs.com/qinqiu/p/4745712.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!