aboutsummaryrefslogtreecommitdiffstats
path: root/admin/picture_modify.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-09-19 21:40:52 +0000
committerz0rglub <z0rglub@piwigo.org>2003-09-19 21:40:52 +0000
commit26452aed650f879803d9211968457696970d44d0 (patch)
tree55a210cc1f6ac25f9ca79bb5ed9e290bdfd62e2d /admin/picture_modify.php
parentb7a5a44944fcf0f20a8e4ab26143962ec8d0a86e (diff)
A category can have its representative picture
git-svn-id: http://piwigo.org/svn/trunk@133 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/picture_modify.php')
-rw-r--r--admin/picture_modify.php49
1 files changed, 48 insertions, 1 deletions
diff --git a/admin/picture_modify.php b/admin/picture_modify.php
index 804cc8e2c..3eaa0748e 100644
--- a/admin/picture_modify.php
+++ b/admin/picture_modify.php
@@ -73,6 +73,39 @@ if ( isset( $_POST['submit'] ) )
$query.= ' WHERE id = '.$_GET['image_id'];
$query.= ';';
mysql_query( $query );
+ // make the picture representative of a category ?
+ $query = 'SELECT DISTINCT(category_id) as category_id';
+ $query.= ',representative_picture_id';
+ $query.= ' FROM '.PREFIX_TABLE.'image_category AS ic';
+ $query.= ', '.PREFIX_TABLE.'categories AS c';
+ $query.= ' WHERE c.id = ic.category_id';
+ $query.= ' AND image_id = '.$_GET['image_id'];
+ $query.= ';';
+ $result = mysql_query( $query );
+ while ( $row = mysql_fetch_array( $result ) )
+ {
+ // if the user ask the picture to be the representative picture of its
+ // category, the category is updated in the database (without wondering
+ // if this picture was already the representative one)
+ if ( $_POST['representative-'.$row['category_id']] == 1 )
+ {
+ $query = 'UPDATE '.PREFIX_TABLE.'categories';
+ $query.= ' SET representative_picture_id = '.$_GET['image_id'];
+ $query.= ' WHERE id = '.$row['category_id'];
+ $query.= ';';
+ mysql_query( $query );
+ }
+ // if the user ask this picture to be not any more the representative,
+ // we have to set the representative_picture_id of this category to NULL
+ else if ( $row['representative_picture_id'] == $_GET['image_id'] )
+ {
+ $query = 'UPDATE '.PREFIX_TABLE.'categories';
+ $query.= ' SET representative_picture_id = NULL';
+ $query.= ' WHERE id = '.$row['category_id'];
+ $query.= ';';
+ mysql_query( $query );
+ }
+ }
// associate with a new category ?
if ( $_POST['associate'] != '-1' )
{
@@ -111,7 +144,7 @@ $tpl = array( 'submit','errors_title','picmod_update','picmod_back',
'default','file','size','filesize','registration_date',
'author','creation_date','keywords','comment', 'upload_name',
'dissociate','categories','infoimage_associate',
- 'cat_image_info' );
+ 'cat_image_info','category_representative' );
templatize_array( $tpl, 'lang', $sub );
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
//-------------------------------------------------------------- errors display
@@ -205,9 +238,16 @@ if ( !$result['visible'] )
$invisible_string.= $lang['cat_invisible'].'</span>';
$vtp->setVar( $sub, 'linked_category.invisible', $invisible_string );
}
+$vtp->setVar( $sub, 'linked_category.id', $row['storage_category_id'] );
+if ( $result['representative_picture_id'] == $_GET['image_id'] )
+{
+ $vtp->setVar( $sub, 'linked_category.representative_checked',
+ ' checked="checked"' );
+}
$vtp->closeSession( $sub, 'linked_category' );
// retrieving all the linked categories
$query = 'SELECT DISTINCT(category_id) as category_id,status,visible';
+$query.= ',representative_picture_id';
$query.= ' FROM '.PREFIX_TABLE.'image_category';
$query.= ','.PREFIX_TABLE.'categories';
$query.= ' WHERE image_id = '.$_GET['image_id'];
@@ -218,6 +258,7 @@ $result = mysql_query( $query );
while ( $row = mysql_fetch_array( $result ) )
{
$vtp->addSession( $sub, 'linked_category' );
+ $vtp->setVar( $sub, 'linked_category.id', $row['category_id'] );
$vtp->addSession( $sub, 'checkbox' );
$vtp->setVar( $sub, 'checkbox.id', $row['category_id'] );
@@ -249,6 +290,12 @@ while ( $row = mysql_fetch_array( $result ) )
$vtp->setVar( $sub, 'linked_category.invisible', $invisible_string );
}
+ if ( $row['representative_picture_id'] == $_GET['image_id'] )
+ {
+ $vtp->setVar( $sub, 'linked_category.representative_checked',
+ ' checked="checked"' );
+ }
+
$vtp->closeSession( $sub, 'linked_category' );
}
// if there are linked category other than the storage category, we show