Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
fa2413f4
Commit
fa2413f4
authored
9 years ago
by
aspangaro
Browse files
Options
Downloads
Patches
Plain Diff
NEW: Add a button to purge criteria in user list
parent
9b4ab63c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/user/index.php
+13
-3
13 additions, 3 deletions
htdocs/user/index.php
with
13 additions
and
3 deletions
htdocs/user/index.php
+
13
−
3
View file @
fa2413f4
...
...
@@ -2,6 +2,7 @@
/* Copyright (C) 2002-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2015 Alexandre Spangaro <alexandre.spangaro@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -62,6 +63,15 @@ $userstatic=new User($db);
$companystatic
=
new
Societe
(
$db
);
$form
=
new
Form
(
$db
);
if
(
GETPOST
(
"button_removefilter_x"
)
||
GETPOST
(
"button_removefilter"
))
// Both test are required to be compatible with all browsers
{
$search_user
=
""
;
$search_login
=
""
;
$search_lastname
=
""
;
$search_firstname
=
""
;
$search_statut
=
""
;
$search_thirdparty
=
""
;
}
/*
* View
...
...
@@ -144,9 +154,9 @@ if ($result)
print
$form
->
selectarray
(
'search_statut'
,
array
(
'-1'
=>
''
,
'0'
=>
$langs
->
trans
(
'Disabled'
),
'1'
=>
$langs
->
trans
(
'Enabled'
)),
$search_statut
);
print
'</td>'
;
print
'<td class="liste_titre" align="right">'
;
print
'<input class="liste_titre"
type="image
" src="'
.
img_picto
(
$langs
->
trans
(
"Search"
),
'search.png'
,
''
,
''
,
1
)
.
'" value="'
.
dol_escape_htmltag
(
$langs
->
trans
(
"
Search
"
))
.
'" title="'
.
dol_escape_htmltag
(
$langs
->
trans
(
"
Search
"
))
.
'">'
;
print
'</td>'
;
print
'<td class="liste_titre" align="right">
<input type="image" class="liste_titre" name="button_search" src="'
.
img_picto
(
$langs
->
trans
(
"Search"
),
'search.png'
,
''
,
''
,
1
)
.
'" value="'
.
dol_escape_htmltag
(
$langs
->
trans
(
"Search"
))
.
'" title="'
.
dol_escape_htmltag
(
$langs
->
trans
(
"Search"
))
.
'">
'
;
print
'<input
type="image"
class="liste_titre"
name="button_removefilter
" src="'
.
img_picto
(
$langs
->
trans
(
"Search"
),
'search
clear
.png'
,
''
,
''
,
1
)
.
'" value="'
.
dol_escape_htmltag
(
$langs
->
trans
(
"
RemoveFilter
"
))
.
'" title="'
.
dol_escape_htmltag
(
$langs
->
trans
(
"
RemoveFilter
"
))
.
'">'
;
print
'</td>'
;
print
"</tr>
\n
"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment