📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 08:10:57
📂
/ (Root)
/
home
/
xeqi7597
/
cds.claireduwig.com
/
wp-content
/
plugins
/
insert-headers-and-footers
/
includes
/
execute
📍 /home/xeqi7597/cds.claireduwig.com/wp-content/plugins/insert-headers-and-footers/includes/execute
🔄 Refresh
✏️
Editing: class-wpcode-snippet-execute-php.php
Writable
<?php /** * Execute php snippets and return their output. * * @package wpcode */ /** * WPCode_Snippet_Execute_PHP class. */ class WPCode_Snippet_Execute_PHP extends WPCode_Snippet_Execute_Type { /** * The snippet type, PHP for this one. * * @var string */ public $type = 'php'; /** * Grab snippet code and return its output. * * @return string */ protected function prepare_snippet_output() { $code = $this->get_snippet_code(); // If we're doing the activation, unslash the code similar to how it will be unslashed before saving in wp_insert_post. if ( wpcode()->execute->is_doing_activation() && isset( $_POST['wpcode_snippet_code'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing $code = wp_unslash( $code ); } return wpcode()->execute->safe_execute_php( $code, $this->snippet ); } }
💾 Save Changes
❌ Cancel