Ignore:
Timestamp:
Jul 9, 2011, 4:43:05 PM (13 years ago)
Author:
J.Commelin
Message:

Finished adding comments to the code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Copyrights/batch_global.php

    r11439 r11678  
    2121
    2222        // Assign the template for batch management
    23         $template->set_filename('batch_global', dirname(__FILE__).'/batch_global.tpl');
     23        $template->set_filename('CR_batch_global', dirname(__FILE__).'/batch_global.tpl');
    2424
    2525        // Fetch all the copyrights and assign them to the template
     
    3939
    4040        // Add info on the "choose action" dropdown in the batch manager
    41         $template->append('element_set_global_plugins_actions', array(
    42                 'ID' => 'copyrights',   // ID of the batch manager action
     41  $template->append('element_set_global_plugins_actions', array(
     42    'ID' => 'copyrights',       // ID of the batch manager action
    4343                'NAME' => l10n('Edit copyright'), // Description of the batch manager action
    44                 'CONTENT' => $template->parse('batch_global', true)
    45         )
     44    'CONTENT' => $template->parse('CR_batch_global', true)
     45  )
    4646        );
    4747}
    4848
    49 // * Deze functie wordt een keer aangeroepen, nadat de gebruiker submit.
    50 // * Fietst met een foreach loop over de geselecteerde fotos
    51 // * Rammelt alle toevoegingen in 1x met mass_updates naar de db.
     49// Process the submit action
    5250function copyrights_batch_global_submit($action, $collection)
    5351{
     
    5755                $crID = pwg_db_real_escape_string($_POST['copyrightID']);
    5856
    59                 if (count($collection) > 0) {
    60                 $query = sprintf(
     57    // Delete any previously assigned copyrights
     58    if (count($collection) > 0) {
     59        $query = sprintf(
    6160                                'DELETE
    6261                                FROM %s
     
    6766                }
    6867
     68    // Add the copyrights from the submit form to an array
    6969                $edits = array();
    7070                foreach ($collection as $image_id)
     
    7979                }
    8080
     81    // Insert the array into the database
    8182                mass_inserts(
    82                         COPYRIGHTS_MEDIA,               // Table name
    83                         array_keys($edits[0]),  //Columns
    84                         $edits                                  // Data
     83                        COPYRIGHTS_MEDIA,                   // Table name
     84                        array_keys($edits[0]),  // Columns
     85                        $edits                                          // Data
    8586                );
    8687        }
Note: See TracChangeset for help on using the changeset viewer.