You are here

media_gallery.admin.inc in Media Gallery 7.2

Same filename and directory in other branches
  1. 7 media_gallery.admin.inc

This file contains the admin functions for the Media Gallery module.

File

media_gallery.admin.inc
View source
<?php

/**
 * @file
 * This file contains the admin functions for the Media Gallery module.
 */

/**
 * The Galleries settings page will just return the term edit form for the "all galleries" tid.
 *
 */
function media_gallery_admin_settings() {
  $edit = media_gallery_get_default_gallery_collection();
  $form_state['build_info']['args'] = array(
    $edit,
  );
  form_load_include($form_state, 'inc', 'taxonomy', 'taxonomy.admin');
  return drupal_build_form('taxonomy_form_term', $form_state);
}

Functions

Namesort descending Description
media_gallery_admin_settings The Galleries settings page will just return the term edit form for the "all galleries" tid.