HEX
Server: Apache
System: Linux web15f49.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: hzaluminio (728004)
PHP: 7.0.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,eval,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/hzaluminio/www/sair/(FORA)wp-content (forA)/plugins/slide-anything/slide-anything.php
<?php
/**
* Plugin Name: Slide Anything - Responsive Content / HTML Slider and Carousel
* Plugin URI: https://wordpress.org/plugins/slide-anything/
* Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
* Author: Simon Edge
* Version: 2.3.9
* License: GPLv2 or later
*/

if (!defined('ABSPATH')) exit; // EXIT IF ACCESSED DIRECTLY

// SET CONSTANT FOR PLUGIN PATH
define('SA_PLUGIN_PATH', plugins_url('/', __FILE__));

require 'php/slide-anything-admin.php';
require 'php/slide-anything-frontend.php';

/* ##### PLUGIN ACTIVATION HOOK ##### */
register_activation_hook(__FILE__, 'cpt_slider_plugin_activation' );

/* ##### ADD ACTION HOOKS & FILTERS FOR PLUGIN ##### */
add_action('admin_enqueue_scripts', 'cpt_register_admin_scripts', 999999);
add_action('init', 'cpt_slider_register');
add_action('post_row_actions', 'cpt_slider_row_actions', 10, 2);
add_action('add_meta_boxes', 'cpt_slider_add_meta_boxes');
add_action('save_post', 'cpt_slider_save_postdata');
add_filter('manage_sa_slider_posts_columns', 'cpt_slider_modify_columns');
add_filter('manage_sa_slider_posts_custom_column', 'cpt_slider_custom_column_content');
add_action('admin_head', 'add_tinymce_button');
add_action('admin_footer', 'get_tinymce_shortcode_array', 9999999);
add_action('admin_menu', 'extra_sa_menu_pages');

// SLIDE ANYTHING 2.0 UPGRADE NOTICE
add_action('admin_notices', 'version_20_upgrade_notice');
add_action('admin_init', 'slide_anything_notice_ignore');
?>