PluginProbe ʕ •ᴥ•ʔ
WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager / 2.3.6
WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager v2.3.6
2.3.6 trunk 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.5.0 1.6.0 1.6.1 1.6.2 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.13.1 2.0.2 2.0.3 2.0.4 2.0.4.1 2.0.4.2 2.0.4.3 2.0.4.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.8.1 2.0.9 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.2 2.1.3 2.1.3.1 2.1.4 2.1.4.1 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.3.1 2.2.4 2.2.4.1 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.2.1 2.3.3 2.3.4 2.3.5
insert-headers-and-footers / includes / lite / admin / class-wpcode-usage-tracking-lite.php
insert-headers-and-footers / includes / lite / admin Last commit date
admin-scripts.php 2 years ago class-wpcode-admin-page-loader-lite.php 9 months ago class-wpcode-connect.php 2 years ago class-wpcode-metabox-snippets-lite.php 1 year ago class-wpcode-usage-tracking-lite.php 3 years ago notices.php 1 year ago
class-wpcode-usage-tracking-lite.php
33 lines
1 <?php
2 /**
3 * WPCode Usage Tracking Lite
4 *
5 * @package WPCode
6 * @since 2.0.10
7 */
8
9 /**
10 * Class WPCode_Usage_Tracking_Lite
11 */
12 class WPCode_Usage_Tracking_Lite extends WPCode_Usage_Tracking {
13
14 /**
15 * Get the type for the request.
16 *
17 * @return string The plugin type.
18 * @since 2.0.10
19 */
20 public function get_type() {
21 return 'lite';
22 }
23
24 /**
25 * Is the usage tracking enabled?
26 *
27 * @return bool
28 */
29 public function is_enabled() {
30 return boolval( wpcode()->settings->get_option( 'usage_tracking' ) );
31 }
32 }
33