ACC SHELL
<?php
// loads the shortcodes class, wordpress is loaded with it
require_once( 'shortcodes.class.php' );
// get popup type
$popup = trim( $_GET['popup'] );
$shortcode = new coffee_Shortcodes( $popup );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<div id="coffee-popup">
<div id="coffee-shortcode-wrap">
<div id="coffee-sc-form-wrap">
<div id="coffee-sc-form-head">
<?php echo $shortcode->popup_title; ?>
</div>
<!-- /#coffee-sc-form-head -->
<form method="post" id="coffee-sc-form">
<table id="coffee-sc-form-table">
<?php echo $shortcode->output; ?>
<tbody>
<tr class="form-row">
<?php if( ! $shortcode->has_child ) : ?><td class="label"> </td><?php endif; ?>
<td class="field"><a href="#" class="button-primary coffee-insert">Insert Shortcode</a></td>
</tr>
</tbody>
</table>
<!-- /#coffee-sc-form-table -->
</form>
<!-- /#coffee-sc-form -->
</div>
<!-- /#coffee-sc-form-wrap -->
<div class="clear"></div>
</div>
<!-- /#coffee-shortcode-wrap -->
</div>
<!-- /#coffee-popup -->
</body>
</html>
ACC SHELL 2018