drupal_get_css -- drupal

    $css = drupal_get_css();
    dpm($css);
    //<style type="text/css" media="all">@import url("http://192.168.1.49/local/sites/all/modules/dev/ctools/css/ctools.css?ntdklu");</style>
//    <style type="text/css" media="all">@import url("http://192.168.1.49/local/sites/all/themes/bartik/css/layout.css?ntdklu");
//@import url("http://192.168.1.49/local/sites/all/themes/bartik/css/style.css?ntdklu");
//@import url("http://192.168.1.49/local/sites/all/themes/bartik/css/colors.css?ntdklu");</style>
//<style type="text/css" media="print">@import url("http://192.168.1.49/local/sites/all/themes/bartik/css/print.css?ntdklu");</style>
时间: 2024-12-14 15:43:51

drupal_get_css -- drupal的相关文章

Drupal创建自定义表单,上传文件代码

Drupal中创建自定义表单,用来上传文件,对上传文件做一些操作.以下是放在Module中的代码: 一.菜单建立表单路径 /** Implementation of hook_menu(). */ function moduleName_menu () { $items = array(); $items['admin/import'] = array( 'title' => 'title', 'page callback' => 'drupal_get_form', 'page argume

Wamp下drupal简洁链接的启用(clean urls)

Wamp下drupal简洁链接的启用 drupal中启用间接链接使本来不友好URL变的非常的友好,提高了网站的知名度,友好的url才能更好的被搜索引擎收藏.间接URL是靠Apache下的mod_rewrite来完成的.因此,得启用mod_rewrite模块. Path: ~\apache\apache2.4.9\conf下文件httpd.conf拷贝到apache\apache2.4.9\conf\extra\下,更名:httpd-drupal.conf. 启用mod_rewrite 打开文件h

学习Drupal、phpMyAdmin,一个android设备的软件即可搞定!

手机服务站 v1.0.6下载地址:http://down.znds.com/apk/tool/2014/0528/667.html简介:     一款集成wifiAp+lamp+ssh+bt功能的软件,智能电视及盒子专用(兼容手机).开启wifi热点.web服务器.数据库.私有云.ssh远程登录.Transmission下载,设置热点访问重定向等.默认配置:     wifi热点名称:“zerogameAp”     wifi热点密码:“12345678”     http访问端口:“8080”

Drupal的PHPfilter

之前一直不知道如果想自定义一个模块应该怎么做. 今天才发现,在基础模块里就又一个模块,名字叫做PHPFilter, 把这个模块打开,然后新建区块,这个时候新建区块下面就有PHPcode的选项啦. 这个时候吧这个选项选上,就可以输入php代码啦. 可是我确实对于PHP不是特别了解,只是大概知道是这么回事,所以以后还有很多很多需要学习的哇. Drupal的PHPfilter,布布扣,bubuko.com

Drupal 8 Console 命令行工具

转载:https://yplam.com/post/79 Drupal Console 是面向Drupal 8 的一套命令行工具,用来生成Drupal 8模板代码,并且可以跟Drupal 8应用进行交互. Drupal Console 与大家熟知的Drush有点类似,但提供不一样的功能,它可以跟Drush结合使用. 安装 $ curl -LSs http://drupalconsole.com/installer | php windows下: php -r "readfile('http://

Drupal 7重置密码方法

Drupal版本 7.40 方法1: 根目录index.php添加 require_once 'includes/password.inc'; require_once 'includes/bootstrap.inc'; echo user_hash_password('123456'); 这样就能在页面中显示123456加密后的密码. 方法2: 推荐方法 windows下打开命令行 定位到drupal根目录 执行 php script/password-hash.sh 密码1 密码2... 这

Drupal 7 模 .info 文件描述

Drupal使用.info文件以节省话题(theme)和模块(modules)基本数据(metadata). 编码:推荐使用UTF-8.这是一个没有BOM(Byte Order Mark). 下面是一个.info的样例 name = Really Neat Widget description = Provides a really neat widget for your site's sidebar. core = 7.x package = Views dependencies[] = v

Nginx1.3.15导致Wordpress,Drupal等框架无限重定向的解决方案

Wordpress建立的站点出现无限循环重定向问题.很多人遇到这个问题,并不是单纯Wordpress,Drupal, PHPCake等框架也都遇到同样的问题. 新版本的Nginx在收到 http://www.nginx.com.cn/请求以后,发送给后台的Apache之前,在后面自动追加了 index.php,导致与原来的请求URL不同,所以造成很多web框架重定向. 解决方案是: 在配置Nginx服务器的时候,注意单独配置location = / 这一项. server { listen 80

drupal 7 实现自定义 pager 分页功能

最近在写一个drupal界面,要显示一个表格,需要分页.但是drupal自带的分页都是基于SQL查询的,而我这次要做的是从mongo中查询数据显示(虽然是从mongo中查询,其实是抽象出了一个model),所以就想研究一下如何在drupal中实现不基于SQL查询的分页功能. 看了drupal官方文档,发现drupal默认的pager非常依赖于SQL查询,很难满足我的需求.后来虽然找到一个从mongo查询实现的分页,但是想了想还是决定自己写一个比较通用的工具,将来需要分页的地方多着呢! 1 fun