media_gallery.admin.inc in Media Gallery 7.2
Same filename and directory in other branches
This file contains the admin functions for the Media Gallery module.
File
media_gallery.admin.incView 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
Name | Description |
---|---|
media_gallery_admin_settings | The Galleries settings page will just return the term edit form for the "all galleries" tid. |