| 1 |
<?php |
| 2 |
/** |
| 3 |
* |
| 4 |
*/ |
| 5 |
|
| 6 |
/** |
| 7 |
* No direct access. |
| 8 |
*/ |
| 9 |
defined('ABSPATH') or die("Access denied"); |
| 10 |
|
| 11 |
// Allow view to enqueue scripts and styles. |
| 12 |
$this->enququeScripts(); |
| 13 |
$this->enququeStyles(); |
| 14 |
$this->suppressPrintScriptsHook(); |
| 15 |
?> |
| 16 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
| 17 |
<head> |
| 18 |
<?php wp_print_head_scripts() ?> |
| 19 |
<?php wp_print_styles() ?> |
| 20 |
</head> |
| 21 |
<body> |
| 22 |
<div id="cjtoolbox_popup"> |
| 23 |
<?php echo $this->getTemplate('form'); ?> |
| 24 |
<?php echo $this->getTemplate('list'); ?> |
| 25 |
</div> |
| 26 |
</body> |
| 27 |
</html> |