php alter menu hook with access

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php alter menu hook with access相关的知识,希望对你有一定的参考价值。


</php
/**
 * Implementation of hook_menu_alter().
 */
function scmp_views_menu_alter(&$items) {
  $items['application/rss/%views_arg/feed']['access callback'] = 'application_rss_feed_access_check';
  $items['application/rss/%views_arg/%/feed']['access callback'] = 'application_rss_feed_access_check';
}

function application_rss_feed_access_check(){
  return true;
}

以上是关于php alter menu hook with access的主要内容,如果未能解决你的问题,请参考以下文章

PHP 关于如何使用表单alter hook的Drupal示例

PHP hook_views_query_alter drupal 6.x

PHP hook_views_query_alter Drupal 6.x(substring)

PHP Drupal Hook_Menu重定向到themable tpl页面

php facetwp woocommerce facetwp-template with hooks

Drupal hook_menu解释