-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCFDBShortcodeExportUrl.php
executable file
·70 lines (59 loc) · 2.43 KB
/
CFDBShortcodeExportUrl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/*
"Contact Form to Database" Copyright (C) 2011-2012 Michael Simpson (email : [email protected])
This file is part of Contact Form to Database.
Contact Form to Database is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Contact Form to Database is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Contact Form to Database.
If not, see <http://www.gnu.org/licenses/>.
*/
require_once('ShortCodeLoader.php');
class CFDBShortcodeExportUrl extends ShortCodeLoader {
/**
* @param $atts array of short code attributes
* @param $content string not used
* @return string export link
*/
public function handleShortcode($atts, $content = null) {
$params = array();
$params[] = admin_url('admin-ajax.php');
$params[] = '?action=cfdb-export';
if (isset($atts['form'])) {
$params[] = '&form=' . urlencode($atts['form']);
}
if (isset($atts['show'])) {
$params[] = '&show=' . urlencode($atts['show']);
}
if (isset($atts['hide'])) {
$params[] = '&hide=' . urlencode($atts['hide']);
}
if (isset($atts['limit'])) {
$params[] = '&limit=' . urlencode($atts['limit']);
}
if (isset($atts['search'])) {
$params[] = '&search=' . urlencode($atts['search']);
}
if (isset($atts['filter'])) {
$params[] = '&filter=' . urlencode($atts['filter']);
}
if (isset($atts['enc'])) {
$params[] = '&enc=' . urlencode($atts['enc']);
}
$url = implode($params);
if (isset($atts['urlonly']) && $atts['urlonly'] == 'true') {
return $url;
}
$linkText = __('Export', 'contact-form-7-to-database-extension');
if (isset($atts['linktext'])) {
$linkText = $atts['linktext'];
}
return sprintf('<a href="%s">%s</a>', $url, $linkText);
}
}