You are here

function _signup_no_views_user_menu_access in Signup 6.2

1 string reference to '_signup_no_views_user_menu_access'
signup_no_views_menu in includes/no_views.inc
Add menu items we only need to define if views is not enabled.

File

includes/no_views.inc, line 102
Provides all the code for required UI elements for sites that do not have views.module enabled. If views is enabled, there are default views for all of these things (which are therefore customizable and more powerful) in signup/views/views.inc.

Code

function _signup_no_views_user_menu_access($account) {
  return variable_get('signup_no_views_user_info', TRUE) && _signup_user_menu_access($account);
}