Skip to content

Commit

Permalink
feature 2089: add the "not_linked" feature as "with no virtual album"…
Browse files Browse the repository at this point in the history
… in the

new Batch Manager.


git-svn-id: http://piwigo.org/svn/trunk@8403 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed Dec 31, 2010
1 parent ff36bf3 commit aa30ee7
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 54 deletions.
65 changes: 32 additions & 33 deletions admin/batch_manager.php
Expand Up @@ -54,7 +54,7 @@

if (isset($_POST['filter_prefilter_use']))
{
$prefilters = array('caddie', 'last import', 'with no album', 'with no tag');
$prefilters = array('caddie', 'last import', 'with no album', 'with no tag', 'with no virtual album');
if (in_array($_POST['filter_prefilter'], $prefilters))
{
$_SESSION['bulk_manager_filter']['prefilter'] = $_POST['filter_prefilter'];
Expand Down Expand Up @@ -144,6 +144,37 @@
);
}
}

if ('with no virtual album' == $_SESSION['bulk_manager_filter']['prefilter'])
{
// we are searching elements not linked to any virtual category
$query = '
SELECT id
FROM '.IMAGES_TABLE.'
;';
$all_elements = array_from_query($query, 'id');

$query = '
SELECT id
FROM '.CATEGORIES_TABLE.'
WHERE dir IS NULL
;';
$virtual_categories = array_from_query($query, 'id');
if (!empty($virtual_categories))
{
$query = '
SELECT DISTINCT(image_id)
FROM '.IMAGE_CATEGORY_TABLE.'
WHERE category_id IN ('.implode(',', $virtual_categories).')
;';
$linked_to_virtual = array_from_query($query, 'image_id');
}

array_push(
$filter_sets,
array_diff($all_elements, $linked_to_virtual)
);
}
}

if (isset($_SESSION['bulk_manager_filter']['category']))
Expand Down Expand Up @@ -194,38 +225,6 @@
// // managed category in $page['cat_elements_id'] array.
// $page['cat_elements_id'] = array();

// else if ('not_linked' == $_GET['cat'])
// {
// $page['title'] = l10n('Not linked elements');
// $template->assign(array('U_ACTIVE_MENU' => 5 ));
//
// // we are searching elements not linked to any virtual category
// $query = '
// SELECT id
// FROM '.IMAGES_TABLE.'
// ;';
// $all_elements = array_from_query($query, 'id');
//
// $linked_to_virtual = array();
//
// $query = '
// SELECT id
// FROM '.CATEGORIES_TABLE.'
// WHERE dir IS NULL
// ;';
// $virtual_categories = array_from_query($query, 'id');
// if (!empty($virtual_categories))
// {
// $query = '
// SELECT DISTINCT(image_id)
// FROM '.IMAGE_CATEGORY_TABLE.'
// WHERE category_id IN ('.implode(',', $virtual_categories).')
// ;';
// $linked_to_virtual = array_from_query($query, 'image_id');
// }
//
// $page['cat_elements_id'] = array_diff($all_elements, $linked_to_virtual);
// }
// else if ('duplicates' == $_GET['cat'])
// {
// $page['title'] = l10n('Files with same name in more than one physical category');
Expand Down
30 changes: 17 additions & 13 deletions admin/batch_manager_global.php
Expand Up @@ -120,6 +120,14 @@
$collection,
array($_POST['associate'])
);

$_SESSION['page_infos'] = array(
l10n('Information data registered in database')
);

// let's refresh the page because we the current set might be modified
$redirect_url = get_root_url().'admin.php?page='.$_GET['page'];
redirect($redirect_url);
}

if ('dissociate' == $action)
Expand Down Expand Up @@ -149,20 +157,16 @@
';
pwg_query($query);

// we remove the dissociated images if we are currently displaying the
// category to dissociate from.
//
// TODO we can display the photo of a given album without the $_GET['cat']
if (is_numeric($_GET['cat']) and $_POST['dissociate'] == $_GET['cat'])
{
$page['cat_elements_id'] = array_diff(
$page['cat_elements_id'],
$dissociables
);
}
update_category($_POST['dissociate']);

$_SESSION['page_infos'] = array(
l10n('Information data registered in database')
);

// let's refresh the page because we the current set might be modified
$redirect_url = get_root_url().'admin.php?page='.$_GET['page'];
redirect($redirect_url);
}

update_category($_POST['dissociate']);
}

// author
Expand Down
8 changes: 0 additions & 8 deletions admin/maintenance.php
Expand Up @@ -150,14 +150,6 @@

$advanced_features = array();

array_push(
$advanced_features,
array(
'CAPTION' => l10n('Not linked elements'),
'URL' => get_root_url().'admin.php?page=element_set&cat=not_linked'
)
);

array_push(
$advanced_features,
array(
Expand Down
3 changes: 3 additions & 0 deletions admin/themes/default/template/batch_manager_global.tpl
Expand Up @@ -353,6 +353,9 @@ a.removeFilter:hover {background: url(admin/themes/default/icon/remove_filter_ho
<select name="filter_prefilter">
<option value="caddie" {if $filter.prefilter eq 'caddie'}selected="selected"{/if}>caddie</option>
<option value="last import" {if $filter.prefilter eq 'last import'}selected="selected"{/if}>last import</option>
{if $ENABLE_SYNCHRONIZATION}
<option value="with no virtual album" {if $filter.prefilter eq 'with no virtual album'}selected="selected"{/if}>with no virtual album</option>
{/if}
<!-- <option value="with no album">with no album</option> -->
<!-- <option value="with no virtual album">with no virtual album</option> -->
<!-- <option value="with no tag">with no tag</option> -->
Expand Down

0 comments on commit aa30ee7

Please sign in to comment.