Samx Here
n1udSecurity


Server : Apache
System : Linux webd348.cluster026.gra.hosting.ovh.net 5.15.148-ovh-vps-grsec-zfs-classid #1 SMP Thu Feb 8 09:41:04 UTC 2024 x86_64
User : hednacluml ( 122243)
PHP Version : 8.3.9
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
Directory :  /home/hednacluml/components/wp-content/plugins/gui-for-lcp/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/hednacluml/components/wp-content/plugins/gui-for-lcp/gui-for-lcp.php
<?php
/**
 * @package   gui_for_lcp
 * @author    Klemens Starybrat
 * @license   GPL-3.0
 * @link      https://github.com/klemens-st/gui-for-lcp
 * @copyright 2023 Klemens Starybrat
 *
 * @wordpress-plugin
 * Plugin Name:       GUI for List Category Posts
 * Plugin URI:        https://github.com/klemens-st/gui-for-lcp
 * Description:       This plugin adds a graphical shortcode creator for List Category Posts, accessible via the "LCP" button in WordPress editor.
 * Version:           2.0.2
 * Author:            Klemens Starybrat
 * Author URI:        https://github.com/klemens-st
 * License:           GPL-3.0
 * License URI:       http://www.gnu.org/licenses/gpl-3.0.txt
 * Text Domain:       gui-for-lcp
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see https://www.gnu.org/licenses/gpl-3.0.txt.
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
  die;
}

/**
 * Current plugin version.
 */
define( 'GUI_FOR_LCP_VERSION', '2.0.2' );

/**
 * The core plugin class that is used to define plugin's hooks.
 */
require plugin_dir_path( __FILE__ ) . 'includes/class-gflcp.php';

/**
 * Begins execution of the plugin.
 *
 * @since    1.0.0
 */
function gflcp_run() {

  $plugin = new Gflcp();
  $plugin->run();

}
gflcp_run();

SAMX