You are here

function spaces_announce_views_arguments in Spaces 5.2

Same name and namespace in other branches
  1. 5 spaces_announce/spaces_announce.module \spaces_announce_views_arguments()

Implementation of hook_views_arguments()

File

spaces_announce/spaces_announce.module, line 324

Code

function spaces_announce_views_arguments() {
  $args = array(
    'announce_gid' => array(
      'name' => t("Announce: Primary group nid(s)"),
      'handler' => 'spaces_announce_handler_argument_gid',
      'help' => t('Filter for posts by primary group.'),
    ),
  );
  return $args;
}