// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
gallery-images-ape
[ PARENT ]
EDIT :: index.php
<?php /* Plugin Name: Gallery Ape Plugin URI: http://wpape.net/gallery-wordpress Description: Gallery Ape it's very useful element of website interface. Gallery Ape one of the most powerful wordpress gallery plugin. Version: 1.2.4 Author: Wp Ape Author URI: http://wpape.net/ License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ if ( ! defined( 'WPINC' ) ) die; define("WPAPE_GALLERY", 1); define("WPAPE_GALLERY_VERSION", '1.2.4'); define("WPAPE_GALLERY_PATH", plugin_dir_path( __FILE__ )); define("WPAPE_GALLERY_URL", plugin_dir_url( __FILE__ )); define("WPAPE_GALLERY_INCLUDES_PATH", WPAPE_GALLERY_PATH.'libs/'); add_action( 'plugins_loaded', 'wpape_gallery_load_textdomain' ); function wpape_gallery_load_textdomain() { load_plugin_textdomain( 'wpape_gallery', false, dirname( plugin_basename( __FILE__ ) ).'/languages' ); } if( file_exists(WPAPE_GALLERY_INCLUDES_PATH.'classHelper.php') ) require_once WPAPE_GALLERY_INCLUDES_PATH.'classHelper.php'; wpApeGalleryHelperClass::load('libs.php' ); $wpApeGalleryInit = new wpApeGalleryInitClass; ?>
SAVE
CANCEL