From f3c2080767dfeafa8aa0e645c8c713ca026aeeb9 Mon Sep 17 00:00:00 2001 From: plegall Date: Fri, 19 Sep 2008 21:18:40 +0000 Subject: deletion: function export_pwg_data was inadvertently added with r1817 while the development was not finished. git-svn-id: http://piwigo.org/svn/trunk@2551 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/include/functions.php | 91 ------------------------------ admin/template/goto/element_set_global.tpl | 3 - 2 files changed, 94 deletions(-) (limited to 'admin') diff --git a/admin/include/functions.php b/admin/include/functions.php index 2d8ae2ba6..8453dad73 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -1696,97 +1696,6 @@ SELECT image_id associate_images_to_categories($images, $destinations); } -/** - * Create an XML file with Piwigo informations about a list of - * pictures. - * - * The goal of the export feature is to make easier the reading of - * informations related to pictures outside of Piwigo. - * - * @param array image_ids - */ -function export_pwg_data($image_ids) -{ - global $conf; - - if (count($image_ids) == 0) - { - return; - } - - $fp = fopen($conf['export_file'], 'w'); - $xml_string = ''."\n"; - - $query = ' -SELECT tag_id, - image_id - FROM '.IMAGE_TAG_TABLE.' - WHERE image_id IN ('.implode(',', $image_ids).') -;'; - $result = pwg_query($query); - $tags_of = array(); - $all_tag_ids = array(); - $tag_name_of = array(); - - if (mysql_num_rows($result)) - { - while ($row = mysql_fetch_array($result)) - { - array_push($all_tag_ids, $row['tag_id']); - - if (!isset($tags_of[ $row['image_id'] ])) { - $tags_of[ $row['image_id'] ] = array(); - } - - array_push( - $tags_of[ $row['image_id'] ], - $row['tag_id'] - ); - } - - $all_tag_ids = array_unique($all_tag_ids); - - $query = ' -SELECT id, - name - FROM '.TAGS_TABLE.' - WHERE id IN ('.implode(',', $all_tag_ids).') -;'; - $result = pwg_query($query); - - while ($row = mysql_fetch_array($result)) - { - $tag_name_of[ $row['id'] ] = $row['name']; - } - } - - $query = ' -SELECT id, - path - FROM '.IMAGES_TABLE.' - WHERE id IN ('.implode(',', $image_ids).') -;'; - $result = pwg_query($query); - - while ($row = mysql_fetch_array($result)) - { - $xml_string.= " \n"; - $xml_string.= " ".$row['id']."\n"; - $xml_string.= " ".$row['path']."\n"; - - foreach ($tags_of[ $row['id'] ] as $tag_id) - { - $xml_string.= " ".$tag_name_of[$tag_id]."\n"; - } - - $xml_string.= " \n"; - } - - $xml_string.= ''; - fwrite($fp, $xml_string); - fclose($fp); -} - /** * Refer main Piwigo URLs (currently PHPWG_DOMAIN domain) * diff --git a/admin/template/goto/element_set_global.tpl b/admin/template/goto/element_set_global.tpl index fc5a92e70..3bdf5688c 100644 --- a/admin/template/goto/element_set_global.tpl +++ b/admin/template/goto/element_set_global.tpl @@ -174,9 +174,6 @@ {else}
  • {/if} - -
  • -

    -- cgit v1.2.3