| Server IP : 216.238.66.20 / Your IP : 216.73.216.199 Web Server : nginx/1.30.4 System : Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/sweetheart.mx/htdocs/wp-content/plugins/shorten-url-disabled/core/ |
Upload File : |
<?php
/*
Core SedLex Plugin
VersionInclude : 3.0
*/
/** =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
* This PHP class enables the creation of a box in the admin backend
*/
if (!class_exists("SLFramework_Box")) {
class SLFramework_Box {
var $title ;
var $content ;
/** ====================================================================================================================================================
* Constructor of the class
*
* @param string $title the title of the box
* @param string $content the HTML code of the content of the box
* @return SLFramework_Box the box object
*/
function __construct($title, $content) {
$this->title = $title ;
$this->content = $content ;
}
/** ====================================================================================================================================================
* Print the box HTML code.
*
* @return void
*/
function flush() {
ob_start();
?>
<div class="metabox-holder" style="width: 100%">
<div class="meta-box-sortables">
<div class="postbox">
<h3 class="hndle"><span><?php echo $this->title ; ?></span></h3>
<div class="inside" style="padding: 5px 10px 5px 20px;">
<?php
echo $this->content ;
?>
</div>
</div>
</div>
</div>
<?php
return ob_get_clean();
}
}
}
?>