DrupalはDevelでのDebugが便利
Dec 5, 2014AD:
Develを使えばこんな感じでDebugしながら作業を行うことができます。
Develの有効化
まずモジュールをダウンロード、有効化します。
https://www.drupal.org/project/devel
1 2 |
drush dl devel drush en devel |
dsmを使って結果を表示
例えば、Nodeの中身を取得してその中身を確認する方法です。
1 2 3 4 5 6 |
if (arg(0) == 'node' && is_numeric(arg(1))) { $nid = arg(1); $nodes = node_load_multiple(array(), array('nid' => $nid)); $node = reset($nodes); dsm($node); } |
AD:
No Comments, Comment or Ping
Reply to “DrupalはDevelでのDebugが便利”
Warning: Undefined variable $user_ID in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/themes/grid_focus_public_mizo/comments.php on line 66
You must be logged in to post a comment.