PluginProbe
Post Grid Gutenberg Blocks – PostX / 2.4.2
Post Grid Gutenberg Blocks – PostX v2.4.2
5.0.39 5.0.38 5.0.37 5.0.36 5.0.35 5.0.34 5.0.33 5.0.32 5.0.31 5.0.30 5.0.29 5.0.28 5.0.27 5.0.26 5.0.25 5.0.23 5.0.24 5.0.22 5.0.21 5.0.20 5.0.19 5.0.18 5.0.17 2.1.1 2.1.2 All 237 releases
ultimate-post / classes / options / Contact.php

Contact.php in Post Grid Gutenberg Blocks – PostX 2.4.2, at classes/options/Contact.php

28 lines 767 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace ULTP;
3
4 defined('ABSPATH') || exit;
5
6 class Options_Contact{
7 public function __construct() {
8 add_submenu_page('ultp-settings', 'Contact', 'Contact / Support', 'manage_options', 'ultp-contact', array( self::class, 'create_admin_page'), 20);
9 }
10
11 /**
12 * Settings page output
13 */
14 public static function create_admin_page() { ?>
15 <style>
16 .style-css{
17 background-color: #f2f2f2;
18 -webkit-font-smoothing: subpixel-antialiased;
19 }
20 </style>
21
22 <div class="ultp-option-body">
23 <?php require_once ULTP_PATH . 'classes/options/Heading.php'; ?>
24 <?php require_once ULTP_PATH . 'classes/options/Footer.php'; ?>
25 </div>
26
27 <?php }
28 }