Browse
For agents
About
Metricool – Social media and site statistics
/
trunk
Metricool – Social media and site statistics
vtrunk
Switch version
2.1.0
2.0.2
2.0.1
2.0.0
1.27
trunk
Overview
Code
metricool
/
views
/
admin
/
share-post
/
button.php
button.php
in Metricool – Social media and site statistics trunk, at views/admin/share-post/button.php
18 lines
400 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
if
(
!
defined
(
'
ABSPATH
'
)
)
{
4
exit
;
5
}
6
7
/**
8
* Variables that should be passed to the view
9
*
@var
string
$actionableUrl
10
*
@var
string
$label
11
*/
12
?
>
13
14
<
a
href
=
"
<?php echo esc_url(
$
actionableUrl
) ?>
"
class
=
"
button button-primary
"
target
=
"
_blank
"
>
15
<
?
php
echo
esc_html
(
$
label
)
;
?
>
16
<
span
class
=
"
dashicons dashicons-megaphone
"
style
=
"
line-height: 100%; vertical-align: middle
"
>
<
/
span
>
17
<
/
a
>
18