source: extensions/Copyrights/batch_single.php @ 11423

Last change on this file since 11423 was 11423, checked in by Mattias, 13 years ago
  • batch renamed to batch_global and moved to a distinct file
  • created batch_single.php
  • some comments here and there
File size: 431 bytes
Line 
1<?php
2
3/*
4Try to be able to change something in the batch manager single mode (unit mode)
5*/
6
7
8
9// Add a prefilter - whatever a prefilter may be - loc begin admin, because of this: http://piwigo.org/forum/viewtopic.php?id=17468
10add_event_handler('loc_begin_admin', 'set_prefilter_batch_single', 55 );
11
12function set_prefilter_batch_single()
13{
14        global $template;
15        $template->set_prefilter('picture', 'copyrights_batch_single');
16}
17
18?>
Note: See TracBrowser for help on using the repository browser.