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
/
app
/
Features
/
Notifications
/
NotificationsLoader.php
NotificationsLoader.php
in Metricool – Social media and site statistics trunk, at app/Features/Notifications/NotificationsLoader.php
30 lines
477 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
declare
(
strict_types
=
1
)
;
4
5
namespace
Metricool
\
Features
\
Notifications
;
6
7
use
Metricool
\
Features
\
AbstractLoader
;
8
9
class
NotificationsLoader
extends
AbstractLoader
10
{
11
/**
12
*
@inheritDoc
13
*/
14
public
function
isEnabled
(
)
:
bool
15
{
16
//
todo
17
//
return (bool) get_option('metricool_onboarding_completed', false);
18
19
return
true
;
20
}
21
22
/**
23
*
@inheritDoc
24
*/
25
public
function
inScope
(
)
:
bool
26
{
27
return
true
;
28
}
29
}
30