You are here

function linkit_picker_dashboard_filter in Linkit Picker 7.3

1 call to linkit_picker_dashboard_filter()
linkit_picker_form_alter in ./linkit_picker.module
Implements hook_form_alter().

File

./linkit_picker.module, line 54
Main file for linkit_pikcer module.

Code

function linkit_picker_dashboard_filter() {
  $profile = linkit_get_active_profile();
  if (!$profile) {
    return '';
  }
  return _linkit_picker_render_container(linkit_picker_get_profile_views($profile->name));
}