プログラミングメモ

主にWeb(PHP, JavaScript, etc.)関連のプログラミングメモをしていきます。

Drupal 7.x

多言語化時の検索結果を表示中の言語のノードのみにする

hook_query_alter()でがんばる。 hasTag('node_access') && $query->hasTag('pager')) { global $language; $tables = $query->getTables(); foreach ($tables as $table) { if ($table['table'] == 'node') { $query->condition('n.language…

hookの実行順を変更する

hook_module_implements_alter()を実装する。 下記はhook_cron()を最後に実行させる場合の例。