C:\xampp\htdocs\landing\wp-content\themes\pennews\inc\dashboard\inc\require-activation.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<?php
if ( ! function_exists'penci_pennews_is_activated' ) ) {
    function 
penci_pennews_is_activated() {
        return 
get_option'penci_pennews_is_activated');
    }
}

if( ! 
function_exists'penci_pennews_is_license' ) ){
    function 
penci_pennews_is_license(){
        
$license_data get_optionstrrev('atad_desahcrup_swennep_icnep') );
        if( ! empty( 
$license_data ) ){
            return 
true;
        } else {
            return 
false;
        }
    }
}

if ( ! 
class_exists'Penci_Require_Active' ) ) {
    class 
Penci_Require_Active {
        protected 
$time_max 2592000// 30 days
        
protected $theme_info;

        public function 
__construct() {
            
// Not run code require active theme on the admin
            
if ( ! is_admin() ) {
                return;
            }

            
$this->theme_info wp_get_theme();
            
$this->main();

            
add_action'wp_ajax_nopriv_penci_check_envato_code', array( $this'do_check_envato_code' ) );
            
add_action'wp_ajax_penci_check_envato_code', array( $this'do_check_envato_code' ) );

            
add_action'admin_enqueue_scripts', array( $this'add_admin_scripts' ), 10);


        }

        public function 
main() {

            
$curent_time             time();
            
$active_status_last_time get_option'pennews_active_status_last_time' );

            
add_action'admin_menu', array( $this'add_submenu_page' ), 15 );

            if ( empty( 
$active_status_last_time ) ) {
                
update_option'pennews_active_status_last_time'$curent_time );
            } else {

                if ( 
penci_pennews_is_activated() ) {
                    return;
                }
                
add_action'admin_notices', array( $this'validation_notice' ) );
            }
        }

        public function 
add_admin_scripts$hook ) {
            if ( 
penci_pennews_is_activated() ) {
                return;
            }

            
$active_status_last_time get_option'pennews_active_status_last_time' );
            
$time_delta              time() - $active_status_last_time;
            
$time_max                $this->time_max;

            if ( 
$time_delta $time_max ) {
                return;
            }

            if ( 
$hook == 'post-new.php' || $hook == 'post.php' ) {
                
wp_enqueue_script"pennews-editor-script"get_template_directory_uri() . '/inc/dashboard/js/edit-post.js', array( 'jquery' ) );
            }
        }

        function 
add_submenu_page() {
            if ( ! 
penci_pennews_is_activated() ) {
                
add_submenu_page'pennews_dashboard_welcome',
                    
esc_html__'Active theme''pennews' ),
                    
esc_html__'Active theme''pennews' ),
                    
'manage_options''pennews_active_theme',
                    array( 
$this'require_active_page' )
                );
            } else if( 
penci_pennews_is_activated() && penci_pennews_is_license() ){
                
add_submenu_page'pennews_dashboard_welcome',
                    
esc_html__'Theme License''pennews' ),
                    
esc_html__'Theme License''pennews' ),
                    
'manage_options''pennews_theme_license',
                    array( 
$this'theme_license_page' )
                );
            }

            if( 
penci_pennews_is_new_update() ){
                
$version penci_pennews_is_new_update'version' );

                
$page_title esc_html__'New Update''pennews' );
                
$menu_title $page_title ' <span class="update-plugins"><span class="update-count">'$version .'</span></span>';
                
add_submenu_page'pennews_dashboard_welcome',
                    
$page_title,
                    
$menu_title,
                    
'manage_options''pennews_new_update',
                    array( 
$this'new_update_page' )
                );
            }


        }

        public function 
get_server_id() {
            
ob_start();
            
phpinfoINFO_GENERAL );
            echo( 
$this->theme_info->name );

            return 
md5ob_get_clean() );
        }

        
/**
         * Show notice active theme
         */
        
function validation_notice() {
            
$pennews_theme    wp_get_theme();
            
$link_page_active admin_url'admin.php?page=pennews_active_theme' );
            
?>
            <div class="notice notice-success is-dismissible" style="background: #b70303; color: #fff; border-color: #00a32a;">
                <p>
                    <a class="penci-notice-logo" href="<?php echo esc_url'http://pencidesign.com/' ); ?>" target="_blank"><?php $this->get_icon_penci(); ?></a>
                    <?php _e'<strong>Please activate PenNews to use full features of the theme</strong>. We\'re sorry about this but we built the activation system to prevent piracy of our themes in the internet, we can do better serve our paying customers.''soledad' ); ?>
                </p>
                <p>
                    <?php esc_html_e'You can''soledad' ); ?>
                    <a style="color: #0bf948;" href="<?php echo ( $link_page_active ); ?>"><?php esc_html_e'click here to activate the theme','soledad' ); ?></a>
                    - <?php _e'If you have issues with this please contact us via <a rel="nofollow" href="http://pencidesign.ticksy.com/" target="_blank" style="color: #0bf948;">our support forum</a> or <a style="color: #0bf948;" rel="nofollow" href="https://themeforest.net/user/pencidesign#contact" target="_blank">our contact form</a>. This notice will be removed after you activated the theme.''soledad' ); ?>
                </p>
                <p><?php _e'You can check the documentation for this theme <a style="color: #0bf948;" href="http://pennews.pencidesign.com/pennews-document/" target="_blank">here</a> to know how to config this theme also.''soledad' ); ?></p>
            </div>
            <?php
        
}

        
/**
         * Get icon penci
         */
        
function get_icon_penci() {
            
?>
            <svg style="position: relative; top:4px;margin-right: 5px;" version="1.0" xmlns="http://www.w3.org/2000/svg"
                 width="18px" height="18px" viewBox="0 0 26.000000 26.000000"
                 preserveAspectRatio="xMidYMid meet">
                <g transform="translate(0.000000,26.000000) scale(0.100000,-0.100000)"
                   fill="#000000" stroke="none">
                    <path d="M72 202 l-62 -60 0 -66 0 -66 125 0 125 0 0 61 0 61 -63 65 -62 64
                -63 -59z m73 28 c3 -5 -3 -10 -15 -10 -12 0 -18 5 -15 10 3 6 10 10 15 10 5 0
                12 -4 15 -10z m57 -57 c34 -33 36 -38 20 -49 -14 -10 -21 -8 -45 12 -36 31
                -62 30 -93 -1 -21 -21 -28 -23 -44 -13 -19 12 -18 14 17 50 51 52 92 52 145 1z
                m-77 -93 c0 -59 -1 -60 -27 -60 -26 0 -28 3 -28 42 0 24 7 49 17 60 28 32 38
                21 38 -42z m49 44 c10 -9 16 -33 16 -60 0 -40 -2 -44 -25 -44 -24 0 -25 3 -25
                60 0 62 7 71 34 44z m-130 -20 c9 -8 16 -31 16 -50 0 -27 -4 -34 -20 -34 -17
                0 -20 7 -20 50 0 28 2 50 4 50 3 0 12 -7 20 -16z m201 -34 c0 -44 -3 -50 -20
                -50 -18 0 -20 5 -17 38 4 35 17 62 31 62 3 0 6 -22 6 -50z"/>
                    <path d="M90 70 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 -10
                -4 -10 -10z"/>
                </g>
            </svg>
            <?php
        
}

        public function 
require_active_page() {
            
$pennews_theme wp_get_theme();
            
?>
            <div class="wrap about-wrap penci-about-wrap penci-active-theme">
                <?php include get_template_directory() . '/inc/dashboard/sections/welcome.php'?>
                <h2 class="nav-tab-wrapper">
                    <a href="<?php echo admin_url'admin.php?page=pennews_dashboard_welcome' ?>" class="nav-tab"><?php esc_html_e'Getting started''pennews' ); ?></a>
                    <a href="<?php echo admin_url'customize.php' ?>" class="nav-tab"><?php esc_html_e'Customize Style''pennews' ); ?></a>
                    <?php if ( ! defined'ENVATO_HOSTED_SITE' ) ): ?>
                        <a href="<?php echo admin_url'admin.php?page=pennews_system_status' ?>" class="nav-tab"><?php esc_html_e'System status''pennews' ); ?></a>
                    <?php endif; ?>
                    <a href="<?php echo admin_url'admin.php?page=pennews_custom_fonts' ?>" class="nav-tab"><?php esc_html_e'Fonts options''pennews' ); ?></a>
                    <a href="<?php echo admin_url'admin.php?page=pennews_migrator' ?>" class="nav-tab"><?php esc_html_e'Migrator Data''pennews' ); ?></a>
                    <a href="<?php echo admin_url'admin.php?page=pennews_active_theme' ?>" class="nav-tab nav-tab-active"><?php esc_html_e'Active theme''pennews' ); ?></a>
                </h2>
                <div class="penci-activate-wrap gt-tab-pane gt-is-active">
                    <div class="penci-activate-envato-code">
                        <div class="penci-activate-code-title"><?php echo esc_htmlsprintf__'Active %s''pennews' ), $pennews_theme->name ) ); ?></div>
                        <p class="penci-activate-desc">
                            <?php echo esc_htmlsprintf__'Please activate %s to use full features of the theme. We\'re sorry about this but we built the activation system to prevent piracy of our themes in the internet, we can do better serve our paying customers. Also, use the theme without a valid license can make your site get issues with DMCA later.''soledad' ), $pennews_theme->name ) ); ?>
                            <br>
                            <?php _e'And please note that: <strong>With each license - you just can use for one website.</strong><br>If you want to use this theme for multiple sites, please buy more licenses for it.<br>Example: <strong>2 licenses can use for 2 websites, 4 licenses can use for 4 websites, 7 licenses can use for 7 websites,...</strong>','pennews' ); ?>
                            <br>
                            <?php _e'You can put your purchase code to the field below to activate the theme.<br>Check <a href="https://help.market.envato.com/hc/en-us/articles/202822600-Where-Is-My-Purchase-Code-" target="_blank">this guide</a> to know how to get your purchase code.<br>After activating the theme, you can revoke the license for this website if you want.''pennews' ); ?>
                        </p>
                        <form id="penci-check-license" action="<?php echo admin_url'admin.php?page=pennews_active_theme' ); ?>">
                            <div class="penci-activate-inputs">
                                <input name="evato-code" class="penci-form-control evato-code" type="text" placeholder="<?php esc_html_e'Your Purchase Code''pennews' ); ?>" value="" autocomplete="off">
                                <input type="hidden" name="server-id" class="server-id" value="<?php echo( $this->get_server_id() ); ?>" readonly/>
                                <span class="penci-form-control-bar"></span>
                                <div class="penci-activate-err">
                                    <span class="penci-err-missing"><?php esc_html_e'Code is required''pennews' ); ?></span>
                                    <span class="penci-err-length"><?php esc_html_e'Code is too short''pennews' ); ?></span>
                                    <span class="penci-err-invalid"><?php esc_html_e'Invalid purchase code. Please check it again.''pennews' ); ?></span>
                                </div>
                            </div>
                            <button class="pennews-activate-button"><?php esc_html_e'Activate theme''pennews' ); ?></button>
                            <div class="spinner"></div>
                            <div class="pennews-find-code">
                                <a href="<?php echo esc_url'https://help.market.envato.com/hc/en-us/articles/202822600-Where-Is-My-Purchase-Code-' ); ?>" target="_blank">
                                    <?php esc_html_e'Find Your Purchase Code''pennews' ); ?>
                                </a>
                            </div>
                        </form>
                    </div>

                </div>
            </div>
            <?php
        
}

        public function 
theme_license_page() {
            
?>
            <div class="wrap about-wrap penci-about-wrap penci-active-theme">
                <?php include get_template_directory() . '/inc/dashboard/sections/welcome.php'?>
                <h2 class="nav-tab-wrapper">
                    <a href="<?php echo admin_url'admin.php?page=pennews_dashboard_welcome' ?>" class="nav-tab"><?php esc_html_e'Getting started''pennews' ); ?></a>
                    <a href="<?php echo admin_url'customize.php' ?>" class="nav-tab"><?php esc_html_e'Customize Style''pennews' ); ?></a>
                    <?php if ( ! defined'ENVATO_HOSTED_SITE' ) ): ?>
                        <a href="<?php echo admin_url'admin.php?page=pennews_system_status' ?>" class="nav-tab"><?php esc_html_e'System status''pennews' ); ?></a>
                    <?php endif; ?>
                    <a href="<?php echo admin_url'admin.php?page=pennews_custom_fonts' ?>" class="nav-tab"><?php esc_html_e'Fonts options''pennews' ); ?></a>
                    <a href="<?php echo admin_url'admin.php?page=pennews_migrator' ?>" class="nav-tab"><?php esc_html_e'Migrator Data''pennews' ); ?></a>
                    <a href="<?php echo admin_url'admin.php?page=pennews_theme_license' ?>" class="nav-tab nav-tab-active"><?php esc_html_e'Theme License''pennews' ); ?></a>
                </h2>
                <div class="penci-activate-wrap gt-tab-pane gt-is-active">
                    <div class="penci-activate-envato-code">
                        <div class="penci-activate-code-title"><?php esc_html_e'Theme License''pennews' ); ?></div>
                        <?php $license_data get_optionstrrev('atad_desahcrup_swennep_icnep') );
                        if( ! empty( 
$license_data ) ){
                            
?>
                            <h3><?php esc_html_e'License Detail''pennews' ); ?></h3>
                            <p class="penci-license-detail-desc" style="font-size: 15px;">
                                <?php if( isset( $license_data['buyer'] ) && $license_data['buyer'] ){
                                    
$buyer $license_data['buyer'];
                                    
$buyer_len strlen$buyer );
                                    
$buyer_display substr($buyer01).str_repeat('*'$buyer_len 2).substr($buyer$buyer_len 11);
                                    
?>
                                    <strong style="display: inline-block; margin-bottom: 8px; min-width: 140px;"><?php esc_html_e'Buyer Username''pennews' ); ?></strong> : &nbsp;&nbsp;<strong><?php echo $buyer_display?></strong><br>
                                <?php ?>
                                <?php if( isset( $license_data['bount_time'] ) && $license_data['bount_time'] ){ ?>
                                    <strong style="display: inline-block; margin-bottom: 8px; min-width: 140px;"><?php esc_html_e'Purchase Date''pennews' ); ?></strong> : &nbsp;&nbsp;<strong><?php echo $license_data['bount_time']; ?></strong><br>
                                <?php ?>
                                <?php if( isset( $license_data['purchase_code'] ) && $license_data['purchase_code'] ){
                                    
$purchased_code $license_data['purchase_code'];
                                    
$code_len strlen$purchased_code );
                                    
$code_display substr($purchased_code08).str_repeat('*'$code_len 16).substr($purchased_code$code_len 88);
                                    
?>
                                    <strong style="display: inline-block; margin-bottom: 8px; min-width: 140px;"><?php esc_html_e'Item Purchase Code''pennews' ); ?></strong> : &nbsp;&nbsp;<strong><?php echo $code_display?></strong><br>
                                <?php ?>
                            </p>
                            <h3><?php esc_html_e'Revoke License''pennews' ); ?></h3>
                            <p class="penci-license-detail-desc" style="font-size: 15px;">
                                <?php _e'Want to revoke the license for this website? Please click to button below:''pennews' ); ?><br>
                                <a href="<?php echo admin_url'admin.php?page=pennews_dashboard_welcome&penci_revoke_license=confirm&revoke_none=' ); echo wp_create_nonce'revoke_license' ); ?>" style="padding: 10px 20px; display: inline-block; line-height: 1; margin-top: 15px; background: #fd6f64; color: #fff;" onclick="return confirm('Are you sure?');"><?php esc_html_e'Revoke License''pennews' ); ?></a>
                            </p>
                        <?php ?>
                    </div>
                </div>
            </div>
            <?php
        
}

        public function 
new_update_page(){
            
$new_version penci_pennews_is_new_update'version' );
            
?>
            <div class="wrap about-wrap penci-about-wrap penci-active-theme">
                <?php include get_template_directory() . '/inc/dashboard/sections/welcome.php'?>
                <h2 class="nav-tab-wrapper">
                    <a href="<?php echo admin_url'admin.php?page=pennews_dashboard_welcome' ?>" class="nav-tab"><?php esc_html_e'Getting started''pennews' ); ?></a>
                    <a href="<?php echo admin_url'customize.php' ?>" class="nav-tab"><?php esc_html_e'Customize Style''pennews' ); ?></a>
                    <?php if ( ! defined'ENVATO_HOSTED_SITE' ) ): ?>
                        <a href="<?php echo admin_url'admin.php?page=pennews_system_status' ?>" class="nav-tab"><?php esc_html_e'System status''pennews' ); ?></a>
                    <?php endif; ?>
                    <a href="<?php echo admin_url'admin.php?page=pennews_custom_fonts' ?>" class="nav-tab"><?php esc_html_e'Fonts options''pennews' ); ?></a>
                    <a href="<?php echo admin_url'admin.php?page=pennews_migrator' ?>" class="nav-tab"><?php esc_html_e'Migrator Data''pennews' ); ?></a>
                    <?php if( penci_pennews_is_activated() && penci_pennews_is_license() ){ ?>
                    <a href="<?php echo admin_url'admin.php?page=pennews_theme_license' ?>" class="nav-tab"><?php esc_html_e'Theme License''pennews' ); ?></a>
                    <?php ?>
                    <a href="<?php echo admin_url'admin.php?page=pennews_new_update' ?>" class="nav-tab nav-tab-active"><?php esc_html_e'New Update''pennews' ); ?></a>
                </h2>
                <div class="penci-activate-wrap gt-tab-pane gt-is-active">
                    <div class="penci-activate-envato-code">
                        <div class="penci-activate-code-title"><?php esc_html_e'Update PenNews Theme''pennews' ); ?></div>
                        <p class="penci-license-detail-desc">
                            <?php esc_html_e'A new version of PenNews theme just released - PenNews Theme version ''pennews' ); ?><?php echo $new_version?><br>
                            <?php esc_html_e'Please update the theme to get the latest version.''pennews' ); ?>
                        </p>
                        <p class="penci-license-detail-desc">
                            <?php _e'To get update the theme with one-click, please check <a style="text-decoration: underline; color: #0043ff;" href="https://pencidesign.ticksy.com/article/15633/" target="_blank">this guide</a> - It\'s the same for all premium WordPress themes on Envato Market.''pennews' ); ?>
                        </p>
                        <p class="penci-license-detail-desc">
                            <?php _e'You can click <a style="text-decoration: underline; color: #0043ff;" href="https://themeforest.net/item/pennew-multiconcept-newsmagazine-amp-wordpress-theme/20822517#item-description__update-changelog" target="_blank">here</a> to check what\'s new in the newest version also.''pennews' ); ?>
                        </p>
                    </div>
                </div>
            </div>
            <?php
        
}

        public function 
do_check_envato_code() {

            
$code = isset( $_POST['envato_code'] ) ? $_POST['envato_code'] : '';
            
$code trim$code );



            
$url "https://api.envato.com/v3/market/author/sale?code="$code;
            
$curl curl_init$url );
            
$personal_token "9Hiox3UFgkWB6xApm9sPgxl8IzBSbeN0";
            
$header = array();
            
$header[] = 'Authorization: Bearer '$personal_token;
            
$header[] = 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0';
            
$header[] = 'timeout: 20';
            
curl_setopt$curlCURLOPT_RETURNTRANSFER);
            
curl_setopt$curlCURLOPT_HTTPHEADER,$header );
            
$envatoRes curl_exec$curl );
            
curl_close$curl );
            
$envatoRes json_decode$envatoRes );
//             echo '<pre>';
//             print_r( $envatoRes );
//             echo '</pre>';

            
$validateID = isset( $envatoRes->item->id ) ? isset( $envatoRes->item->id ) : '';

            if ( 
'12945398' == $validateID ) {
                
$array_data = array();
                
$array_data['purchase_code'] = $code;
                
$time_now strtotime("+30 days");
                if( 
$time_now ){
                    
$array_data['time_notice'] = $time_now;
                }
                if( isset( 
$envatoRes->supported_until ) ){
                    
$date = new DateTime$envatoRes->supported_until );
                    
$support_to $date->format('Y-m-d H:i:s');
                    
$array_data['support_to'] = $support_to/* Cover to Unix timestamps use strtotime() */
                
}

                if( isset( 
$envatoRes->sold_at ) ){
                    
$boughtdate = new DateTime$envatoRes->sold_at );
                    
$bount_time $boughtdate->format('Y-m-d H:i:s');
                    
$array_data['bount_time'] = $bount_time/* Cover to Unix timestamps use strtotime() */
                
}

                if( isset( 
$envatoRes->buyer ) ){
                    
$array_data['buyer'] = $envatoRes->buyer;
                }

                if( isset( 
$envatoRes->purchase_count ) ){
                    
$array_data['purchase_count'] = $envatoRes->purchase_count;
                }

                if( isset( 
$envatoRes->amount ) ){
                    
$array_data['amount'] = $envatoRes->amount;
                }

                
update_option'penci_pennews_is_activated');
                
update_optionstrrev('atad_desahcrup_swennep_icnep'), $array_data );
                
wp_send_json_success( array( 'success' => true ) );

            } else {
                
wp_send_json_error( array( 'success' => false  ) );
            }
        }

        public function 
theme_purchase_exists$token$page '' ) {
            
$list_themes $this->get_list_theme_purchase$token );

            if ( ! 
$list_themes ) {
                return 
false;
            }

            foreach ( 
$list_themes as $theme ) {

                if ( isset( 
$theme['name'] ) && 'PenNews' == $theme['name'] ) {
                    return 
true;
                }
            }

            if ( 
100 === count$list_themes ) ) {

                if ( ! 
$page ) {
                    
$page 2;
                } else {
                    
$page $page 1;
                }

                
$page = ( ! $page ) ? $page 1;

                return 
$this->theme_purchase_exists$token$page );
            }

            return 
false;
        }

        public function 
get_list_theme_purchase$token$page '' ) {
            
$themes = array();
            
$url    'https://api.envato.com/v3/market/buyer/list-purchases?filter_by=wordpress-themes' . ( $page '&page=' $page '' );

            
$response_themes wp_remote_get$url, array(
                
'headers'      => array(
                    
'Authorization' => 'Bearer ' $token,
                    
'User-Agent'    => 'Purchase code verification script',
                ),
                
'timeout'      => 20,
                
'headers_data' => false,
            ) );
            
$response_themes json_decodewp_remote_retrieve_body$response_themes ), true );

            if ( ! 
is_wp_error$response_themes ) && isset( $response_themes['results'] ) ) {
                foreach ( (array) 
$response_themes['results'] as $theme ) {
                    
$themes[] = array(
                        
'id'         => isset( $theme['item']['id'] ) ? $theme['item']['id'] : '',
                        
'name'       => isset( $theme['item']['wordpress_theme_metadata']['theme_name'] ) ? $theme['item']['wordpress_theme_metadata']['theme_name'] : '',
                        
'author'     => isset( $theme['item']['wordpress_theme_metadata']['author_name'] ) ? $theme['item']['wordpress_theme_metadata']['author_name'] : '',
                        
'url'        => isset( $theme['item']['url'] ) ? $theme['item']['url'] : '',
                        
'author_url' => isset( $theme['item']['author_url'] ) ? $theme['item']['author_url'] : ''
                    
);
                }
            }

            return 
$themes;
        }
    }
}

new 
Penci_Require_Active;

x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586