本文整理汇总了PHP中Plugins::get_filename方法的典型用法代码示例。如果您正苦于以下问题:PHP Plugins::get_filename方法的具体用法?PHP Plugins::get_filename怎么用?PHP Plugins::get_filename使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Plugins
的用法示例。
在下文中一共展示了Plugins::get_filename方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: displayPluginContent
function displayPluginContent()
{
$curPlugin = new Plugins($_GET['pluginID']);
if (file_exists($curPlugin->get_filename())) {
include_once $curPlugin->get_filename();
$className = $curPlugin->get_class_name();
$pluginClass = new $className();
return $pluginClass->get_content();
} else {
return "The file does not exist.";
}
/*$phpFile = $curPlugin->get_filename();
$fh = fopen($phpFile, 'r');
$data = fread($fh, filesize($phpFile));
fclose($fh);
if (!preg_match("/echo/i", $data) && !preg_match("/print/i", $data) )
{
if (class_exists($className))
{
$pluginClass = new $className();
}
else {return "Your class, \"".$className."\", taken from the database does not exist in your php file.";}
if(method_exists($pluginClass, 'get_content')) {
if($pluginClass->get_content() !='')
{
return $pluginClass->get_content();
}
}
else{return "No Content to retrieve";}
}
else {return "You cannot echo or print your content out, you must return a value";}*/
}
示例2: updatePluginConfig
function updatePluginConfig()
{
global $tool, $propertyForm;
if (!isset($_POST['id'])) {
echo "The configuration must contain the hidden input type, 'id' with values {$id}. <input type='hidden' name='id' value=\".{$id}.\"></input>";
return false;
} else {
$curPlugin = new Plugins($_POST['id']);
include_once $curPlugin->get_filename();
$className = $curPlugin->get_class_name();
$pluginClass = new $className();
$postValues = $_POST;
$values = array();
foreach ($postValues as $id => $value) {
$pos = strpos($id, "Plugin_");
if ($pos === 0) {
$values = $postValues;
}
}
if ($pluginClass->update_config($values)) {
$status = "success";
echo "<script language='javascript'>LoadPage(\"configurations.php?action=plugins&mode=edit&update=" . $status . "\", 'settingsInfo');</script>";
} else {
$propertyForm->error("Warning: Failed to update plugins. Reason: plugin update is not returning a true value");
}
}
}