PluginProbe ʕ •ᴥ•ʔ
Kirki – Freeform Page Builder, Website Builder & Customizer / 6.2.0
Kirki – Freeform Page Builder, Website Builder & Customizer v6.2.0
6.2.0 6.1.1 6.1.0 6.0.14 6.0.13 6.0.12 6.0.11 6.0.10 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 4.0.19 4.0.20 4.0.21 4.0.22 4.0.23 4.0.24 4.1 4.2.0 5.0.0 5.1.0 5.1.1 5.2.0 5.2.1 5.2.2 5.2.3 6.0.0 trunk 3.0.40 3.0.41 3.0.42 3.0.43 3.0.44 3.0.45 3.1.0 3.1.1 3.1.2
kirki / includes / Admin.php
kirki / includes Last commit date
API 4 days ago Admin 1 month ago Ajax 4 days ago ExportImport 2 weeks ago FormValidator 3 months ago Frontend 4 days ago Manager 2 weeks ago API.php 2 weeks ago Admin.php 3 months ago Ajax.php 4 days ago Apps.php 1 month ago ContentManager.php 3 months ago DbQueryUtils.php 2 months ago ElementVisibilityConditions.php 3 months ago Frontend.php 3 months ago HelperFunctions.php 4 days ago KirkiBase.php 1 month ago PostsQueryUtils.php 3 months ago Staging.php 4 days ago View.php 1 month ago
Admin.php
53 lines
1 <?php
2 /**
3 * Admin panel kirki entry point
4 *
5 * @package kirki
6 */
7
8 namespace Kirki;
9
10 if ( ! defined( 'ABSPATH' ) ) {
11 exit; // Exit if accessed directly.
12 }
13
14 use Kirki\Admin\AdminMenu;
15 use Kirki\Admin\PostActions;
16 use Kirki\Admin\EditWithButton;
17
18 /**
19 * Kirki Admin
20 */
21 class Admin {
22 /**
23 * Initialize the class
24 *
25 * @return void
26 */
27 public function __construct() {
28
29 new AdminMenu();
30 new PostActions();
31 new EditWithButton();
32 }
33
34 /**
35 * Plugin activation link
36 *
37 * @since 1.0.0
38 *
39 * @param array $actions action list.
40 * @return array
41 */
42 // public function plugin_action_links( $actions ) {
43 // if ( ! HelperFunctions::is_pro_user() ) {
44 // $actions['kirki_pro_link'] =
45 // '<a href="https://kirki.com/pricing/?utm_source=kirki_dashboard&utm_medium=wp_dashboard&utm_campaign=upgrade_pro&referrer=wordpress_dashboard" target="_blank">
46 // <span style="color: #7338d6; font-weight: bold;">Upgrade Pro</span>
47 // </a>';
48 // }
49
50 // return $actions;
51 // }
52 }
53