File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/show-hide-content/show-hide-content.php
<?php
/*
Plugin Name: Show Hide Content
Plugin URI: http://wordpresshowtos.blogspot.com/2015/10/show-hide-content-plugin.html
Description: A plugin to create a readmore button on your blog 
Author: Zeeshan Aslam Durrani
Version: 1.1
Author URI: http://wordpresshowtos.blogspot.com/2015/10/show-hide-content-plugin.html
Text Domain: show-hide-content
Domin Path: Languages
License: GPLV2

Copyright 2015 ZEESHANASLAMDURRANI (email : zeeshanaslamdurrani@gmail.com)
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
(at your option) 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, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/

/*******************
* Global Variables 
*******************/

$shc_prefix = 'shc';
$shc_plugin_name = 'Show Hide Content';

/*******************
* includes 
*******************/

$dir = plugin_dir_path( __FILE__ );

include($dir.'includes/shc_scripts.php'); // this file controls all the JS and CSS scripts
include($dir.'includes/shc_data-processing.php'); // to open links in a new window

/*****************
* Translation
******************/

load_plugin_textdomain('show-hide-content', false, basename(dirname( __FILE__ ) ) . '/languages' );




?>