PATH:
home
/
fengshp
/
www
/
wp-content
/
plugins
/
spotlight-social-photo-feeds
/
modules
/
Dev
<?php namespace RebelCode\Spotlight\Instagram\Modules\Dev; /** * Dev tool that clears the WordPress debug.log file. * * @since 0.1 */ class DevClearLog { /** * @since 0.1 */ public function __invoke() { $resetDb = filter_input(INPUT_POST, 'sli_clear_log'); if (!$resetDb) { return; } if (!wp_verify_nonce($resetDb, 'sli_clear_log')) { wp_die('You cannot do that!', 'Unauthorized', [ 'back_link' => true, ]); } @unlink(WP_CONTENT_DIR . '/debug.log'); } }
[+]
..
[-] DEVSurveyModule-xtacl.php
[edit]
[-] DevDeleteThumbnails.php
[edit]
[-] DevAccessTokenHandler.php
[edit]
[-] DevSimError.php
[edit]
[-] ServiceTree.php
[edit]
[-] DevCatalog.php
[edit]
[-] DevPage.php
[edit]
[-] DevResetDb.php
[edit]
[-] DevDeleteMedia.php
[edit]
[-] DevClearLog.php
[edit]
[-] DevModule.php
[edit]