aboutsummaryrefslogtreecommitdiffstats
path: root/admin/infos_images.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-07-26 09:28:58 +0000
committerz0rglub <z0rglub@piwigo.org>2003-07-26 09:28:58 +0000
commite1c6bb32bc52829b241cf9fd80bf0216935d3faf (patch)
tree08de698c08afe3523c8f18a97565c4e7338f7621 /admin/infos_images.php
parent5649720e235a2e2c2156ce412256faa615dbb233 (diff)
instead of overriding individual keywords,\nyou can add a keyword to all or remove it from all
git-svn-id: http://piwigo.org/svn/trunk@40 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/infos_images.php')
-rw-r--r--admin/infos_images.php62
1 files changed, 45 insertions, 17 deletions
diff --git a/admin/infos_images.php b/admin/infos_images.php
index 62c09863f..42cb4b105 100644
--- a/admin/infos_images.php
+++ b/admin/infos_images.php
@@ -172,26 +172,52 @@ if ( isset( $page['cat'] ) )
echo $lang['err_date'];
}
}
- if ( $_POST['use_common_keywords'] == 1 )
+ if ( isset( $_POST['common_keywords'] ) and $_POST['keywords_cat'] != '' )
{
- $keywords = get_keywords( $_POST['keywords_cat'] );
- $query = 'UPDATE '.PREFIX_TABLE.'images';
- if ( count( $keywords ) == 0 )
- {
- $query.= ' SET keywords = NULL';
- }
- else
+ $query = 'SELECT id,keywords';
+ $query.= ' FROM '.PREFIX_TABLE.'images';
+ $query.= ' WHERE cat_id = '.$page['cat'];
+ $query.= ';';
+ $result = mysql_query( $query );
+ while ( $row = mysql_fetch_array( $result ) )
{
- $query.= ' SET keywords = "';
- foreach ( $keywords as $i => $keyword ) {
- if ( $i > 0 ) $query.= ',';
- $query.= $keyword;
+ $specific_keywords = explode( ',', $row['keywords'] );
+ $common_keywords = get_keywords( $_POST['keywords_cat'] );
+ // first possiblity : adding the given keywords to all the pictures
+ if ( $_POST['common_keywords'] == 'add' )
+ {
+ $keywords = array_merge( $specific_keywords, $common_keywords );
+ $keywords = array_unique( $keywords );
+ }
+ // second possiblity : removing the given keywords from all pictures
+ // (without deleting the other specific keywords
+ if ( $_POST['common_keywords'] == 'remove' )
+ {
+ $keywords = array_diff( $specific_keywords, $common_keywords );
+ }
+ // cleaning the keywords array, sometimes, an empty value still remain
+ $keywords = array_remove( $keywords, '' );
+ // updating the picture with new keywords array
+ $query = 'UPDATE '.PREFIX_TABLE.'images';
+ $query.= ' SET keywords = ';
+ if ( count( $keywords ) == 0 )
+ {
+ $query.= 'NULL';
}
- $query.= '"';
+ else
+ {
+ $query.= '"';
+ $i = 0;
+ foreach ( $keywords as $keyword ) {
+ if ( $i++ > 0 ) $query.= ',';
+ $query.= $keyword;
+ }
+ $query.= '"';
+ }
+ $query.= ' WHERE id = '.$row['id'];
+ $query.= ';';
+ mysql_query( $query );
}
- $query.= ' WHERE cat_id = '.$page['cat'];
- $query.= ';';
- mysql_query( $query );
}
//--------------------------------------------------------- form initialization
$page['nb_image_page'] = 5;
@@ -224,7 +250,9 @@ if ( isset( $page['cat'] ) )
$tpl = array( 'infoimage_general','author','infoimage_useforall','submit',
'infoimage_creation_date','infoimage_detailed','thumbnail',
'infoimage_title','infoimage_comment',
- 'infoimage_creation_date','infoimage_keywords' );
+ 'infoimage_creation_date','infoimage_keywords',
+ 'infoimage_addtoall','infoimage_removefromall',
+ 'infoimage_keyword_separation' );
templatize_array( $tpl, 'lang', $sub );
//------------------------------------------------------------------------ form
$url = './admin.php?page=infos_images&amp;cat_id='.$page['cat'];