# css-javascript-toolbox/8.0.2/views/blocks/manager/tmpl/blocks.html.tmpl

CSS &amp; JavaScript Toolbox, version 8.0.2. 44 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.2/code/views/blocks/manager/tmpl/blocks.html.tmpl
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.2/raw/views/blocks/manager/tmpl/blocks.html.tmpl
- Modified: 2014-10-17T19:05:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.2/code/views/blocks/manager/tmpl/blocks.html.tmpl#L10-L20`.

```
<?php
/**
* 
*/

// Diallow direct access.
defined('ABSPATH') or die("Access denied");
?>
<div id="cjtoolbox-admin" class="wrap">
<?php
	$content = '';
	echo CJTBlocksManagerView::trigger('CJTBlocksManagerView.loadglobalcomponents', $content);
?>
<?php require CJTOOLBOX_VIEWS_PATH . '/blocks/block/tmpl/codefile/codefile.html.tmpl' ?>
	<div id="custom-icon" class="icon32 blocks-icon32"></div>
	<h2><?php echo cssJSToolbox::getText('CSS & Javascript Toolbox') ?></h2>
	<div id="cjt-banner-bar-right">
		<span class="cjt-banner-link">
			<a target="_blank" href="http://<?php echo cssJSToolbox::CJT_WEB_SITE_DOMAIN ?>/support/"><?php echo cssJSToolbox::getText('Support Forum') ?></a>&nbsp;&nbsp;|&nbsp;&nbsp;
			<a target="_blank" href="http://<?php echo cssJSToolbox::CJT_WEB_SITE_DOMAIN ?>/documentation/"><?php echo cssJSToolbox::getText('Online Documentation') ?></a>
		</span>
	</div>
	<div id="cjtoolbox-blocks-page-form" method="post">
		<?php wp_nonce_field('cjtoolbox'); ?>
		<?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false); ?>
		<?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false); ?>
		<input type="hidden" id="cjt-hasBlocks" value="<?php echo $this->hasBlocks ? 'true' : 'false' ?>" />
		<input type="hidden" id="cjt-securityToken" value="<?php echo $this->securityToken ?>" />
		<div id="poststuff" class="metabox-holder">
			<div id="post-body">
<?php if ($this->backupId) : ?>
				<p id="cjt-info"><?php  echo cssJSToolbox::getText('You have now restored the code blocks from the current backup. Nothing is saved until you click "Restore" button. To revert back to the previous code blocks and discard this action, simply click the "Cancel Restore" button.') ?></p>
<?php endif; ?>
<?php 	echo $this->getTemplate('toolbox', array('location' => 'top'));	?>
<?php		do_meta_boxes($this->pageHook, 'normal', null); ?>
				<div id="cjt-noblocks-intro"<?php if ($this->hasBlocks) : ?> style="display:none"<?php endif; ?>>
<?php		echo $this->getTemplate('intro', array(), 'tmpl/help') ?>
				</div>
<?php 	echo $this->getTemplate('toolbox', array('location' => 'bottom'));	?>
			</div>
		</div>
	</div>
	<div id="cjt-inline-popup"></div>
</div>
```
