Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved tags handling, collections browsing, dashboard #946

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4546665
Added items count for recent collections
DBinaghi Mar 31, 2021
46ca5c0
Added recent_admin setting option
DBinaghi Mar 31, 2021
b65690c
Added default value for recent_admin setting
DBinaghi Mar 31, 2021
90401ce
Added recent_admin option
DBinaghi Mar 31, 2021
663e468
Update AppearanceSettings.php
DBinaghi Mar 31, 2021
c89d27b
Added recent_admin option
DBinaghi Mar 31, 2021
68f36ac
Added recent_admin option
DBinaghi Mar 31, 2021
fbb28aa
Added recent_admin option
DBinaghi Mar 31, 2021
f97c1bb
Added option for recent Items and Collections
DBinaghi Mar 31, 2021
abe7a9b
Added styling for input type=email
DBinaghi Mar 31, 2021
89c4c93
Added styling for .inputs input[type=email]
DBinaghi Mar 31, 2021
d4b13a0
Corrected typo
DBinaghi Mar 31, 2021
16b3e75
Added Delete link to Collections
DBinaghi Mar 31, 2021
3b40cae
Added quick-filters.php file
DBinaghi Mar 31, 2021
a5fb02d
Added quick-filters
DBinaghi Mar 31, 2021
37eefbf
Added styling for collection-filters
DBinaghi Mar 31, 2021
5117c19
Added collection_search_filters function
DBinaghi Mar 31, 2021
7c4a23b
Added file
DBinaghi Mar 31, 2021
524de44
Added details handling
DBinaghi Mar 31, 2021
2e23da0
Provided details handling during browsing
DBinaghi Mar 31, 2021
83846d4
Fixed Details blue button visualization
DBinaghi Mar 31, 2021
d46af0e
Added autosuggest for tag field
DBinaghi Mar 31, 2021
cc11a98
Added mergeTags function
DBinaghi Apr 1, 2021
4a8fd1b
Added code to delete tags if not used anymore
DBinaghi Apr 1, 2021
457b676
Cleaned up indentation
DBinaghi Apr 1, 2021
bd08d16
Extended delete function, added merge capability
DBinaghi Apr 1, 2021
d33ffbd
Added specification to page title
DBinaghi Apr 1, 2021
44f78e0
Hide sort options when no results are available
DBinaghi Apr 9, 2021
3f09e28
Merge branch 'master' into master
DBinaghi Oct 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added autosuggest for tag field
  • Loading branch information
DBinaghi authored Mar 31, 2021
commit d46af0eb760d02ea60879e02c3599850c462da5e
10 changes: 10 additions & 0 deletions admin/themes/default/items/batch-edit.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php
queue_js_file('items');
$tagDelimiter = get_option('tag_delimiter');
$title = __('Batch Edit Items');
if (!$isPartial):
echo head(
@@ -12,6 +14,14 @@
<div title="<?php echo $title; ?>">

<form id="batch-edit-form" action="<?php echo html_escape(url('items/batch-edit-save')); ?>" method="post" accept-charset="utf-8">
<script type="text/javascript">
//<![CDATA[
jQuery(document).ready(function () {
Omeka.Items.tagDelimiter = <?php echo js_escape($tagDelimiter); ?>;
Omeka.Items.tagChoices('#metadata-tags', <?php echo js_escape(url(array('controller' => 'tags', 'action' => 'autocomplete'), 'default', array(), true)); ?>);
});
//]]>
</script>
<section class="seven columns alpha">
<fieldset id="item-list" class="panel">
<h2 class="two columns alpha"><?php echo __('Items'); ?></h2>