Browse
For agents
About
Listdom: AI-powered Business Directory with Classifieds Ads Listings
/
trunk
Listdom: AI-powered Business Directory with Classifieds Ads Listings
vtrunk
Switch version
6.0.0
5.9.0
5.8.1
5.8.0
5.7.0
5.6.0
trunk
1.0.0
1.0.1
1.0.2
1.1.0
1.1.1
1.2.0
1.2.1
1.3.0
1.3.1
1.4.0
1.5.0
1.6.0
1.6.1
1.6.2
1.6.3
1.7.0
1.8.0
1.9.0
All 75 releases
Overview
Code
listdom
/
app
/
includes
/
lite.php
lite.php
in Listdom: AI-powered Business Directory with Classifieds Ads Listings trunk, at app/includes/lite.php
18 lines
469 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
class
LSD_Lite
extends
LSD_Base
4
{
5
public
function
init
(
)
6
{
7
//
Disable Data Deletion
8
add_filter
(
'
lsd_purge_options
'
,
'
__return_false
'
)
;
9
10
//
Add Action Links
11
add_filter
(
'
plugin_action_links_
'
.
LSD_BASENAME
,
function
(
$
links
)
12
{
13
$
links
[
]
=
'
<a href="
'
.
esc_url
(
$
this
->
getWebiliaShopURL
(
)
)
.
'
" target="_blank">
'
.
esc_html__
(
'
Upgrade
'
,
'
listdom
'
)
.
'
</a>
'
;
14
return
$
links
;
15
}
)
;
16
}
17
}
18