PluginProbe
WP Coder – Insert & Manage Code Snippets / 2.5.3
WP Coder – Insert & Manage Code Snippets v2.5.3
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / admin / general / main.php

main.php in WP Coder – Insert & Manage Code Snippets 2.5.3, at admin/general/main.php

118 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Main Page
4 *
5 * @package Wow_Plugin
6 * @subpackage Wow-Company/Main
7 * @author Wow-Company <givememony1982@gmail.com>
8 * @copyright 2019 Wow-Company (Wow-Company)
9 * @license GNU Public License
10 * @version 0.1
11 */
12
13 if ( ! defined( 'ABSPATH' ) ) {
14 exit;
15 }
16 $logo = plugin_dir_url( __FILE__ ) . 'image/icon.png';
17 ?>
18 <style>
19 .about-wrap .wow-badge {
20 position: absolute;
21 top: 0;
22 right: 0;
23 }
24
25 .wow-badge {
26 background: url(<?php echo esc_url( $logo );?>) center 15px no-repeat #1f9ef8;
27 background-size: 100px 100px;
28 color: #ffffff;
29 font-size: 14px;
30 text-align: center;
31 font-weight: 600;
32 margin: 5px 0 0;
33 padding-top: 120px;
34 height: 40px;
35 display: inline-block;
36 width: 140px;
37 text-rendering: optimizeLegibility;
38 box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
39 }
40
41 .wow-subscribe {
42 padding: 5px 7px;
43 border-radius: 5px;
44 border: 1px solid #ccc;
45 text-decoration: none;
46 font-size: 14px;
47 line-height: 14px;
48 color: #999;
49 }
50
51 .wow-subscribe::before {
52 font-family: dashicons;
53 font-size: 12px;
54 line-height: 14px;
55 }
56
57 .button-pro {
58 vertical-align: top;
59 display: inline-block;
60 text-decoration: none;
61 font-size: 13px;
62 line-height: 26px;
63 height: 28px;
64 margin: 0;
65 padding: 0 10px 1px;
66 cursor: pointer;
67 border-width: 0;
68 border-style: solid;
69 -webkit-appearance: none;
70 -webkit-border-radius: 3px;
71 border-radius: 3px;
72 white-space: nowrap;
73 -webkit-box-sizing: border-box;
74 -moz-box-sizing: border-box;
75 box-sizing: border-box;
76 color: #fff !important;
77 background: #37c781;
78 }
79
80 .button-pro:hover {
81 background: #303030;
82 }
83
84 .button-pro:active {
85 background: #303030;
86 }
87
88 .wow-thank-you {
89 color: #777777;
90 font-style: italic;
91 }
92
93 .about-wrap {
94 margin: 0 auto 3rem;
95 }
96 </style>
97
98
99 <div class="wrap full-width-layout">
100 <div class="about-wrap">
101
102
103 <h1><?php esc_attr_e( 'Welcome' ); ?> </h1>
104
105 <p class="about-text">
106 <?php esc_attr_e( 'Congratulations! You are about to use one of the plugins from Wow-Company.' ); ?>
107 </p>
108 <p>Several plugins below has free and pro versions you can install it and hopefully useful. Enjoy it.</p>
109 <span class="wow-badge">Wow-Company</span>
110 </div>
111 <div class="stem-content">
112 <?php include( 'wow-plugins.php' ); ?>
113 </div>
114
115 </div>
116
117
118