예제 #1
0
파일: admin.php 프로젝트: ksingh812/epb
<?php

/**
 * Represents the view for the administration dashboard.
 *
 * This includes the header, options, and other information that should
 * provide the user interface to the end user.
 *
 * @package   customify
 * @author    Pixelgrade <*****@*****.**>
 * @license   GPL-2.0+
 * @link      http://pixelgrade.com
 * @copyright 2013 Pixel Grade Media
 */
$config = (include pixcustomify::pluginpath() . 'plugin-config' . EXT);
// invoke processor
$processor = pixcustomify::processor($config);
$status = $processor->status();
$errors = $processor->errors();
?>

<div class="wrap" id="pixcustomify_form">

	<div id="icon-options-general" class="icon32"><br></div>

	<h2><?php 
_e('PixCustomify', 'pixcustomify_txtd');
?>
</h2>

	<?php 
예제 #2
0
파일: core.php 프로젝트: ksingh812/epb
 /**
  * Sets a custom plugin path; required in non-standard plugin structures.
  */
 static function setpluginpath($path)
 {
     self::$pluginpath = $path;
 }