Drupalのテーマ作成時の.infoファイル

July 27, 2015

The name should start with an alphabetic character, can contain numbers and underscores, but not hyphens, spaces or punctuation. The name will be used by Drupal in forming various functions in PHP and therefore it has the same limitations.

Drupal のテーマ作成時の.info ファイル名はアルファベットで始まり、数字とアンダースコアを含める事ができる。ただし、ハイフン、スペースと句読点は使用できない。 また、このファイル名はtemplate.phptheme-setteing.phpのフック用の関数の接頭辞として利用されるので重要。

    // hogehoge.infoの場合

    function hogehoge_preprocess_image(&$variables) {
      foreach (array('width', 'height') as $key) {
        unset($variables[$key]);
      }
    }

Profile picture

Webのフロントエンドからバックエンド、プロトタイピングからプロダクションまで。定額の開発サービスも。詳しくはAboutページで。