本文整理汇总了PHP中JParameter::loadObject方法的典型用法代码示例。如果您正苦于以下问题:PHP JParameter::loadObject方法的具体用法?PHP JParameter::loadObject怎么用?PHP JParameter::loadObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JParameter
的用法示例。
在下文中一共展示了JParameter::loadObject方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: showConfig
function showConfig( &$row, &$lists )
{
global $mainframe;
// Load tooltips behavior
JHTML::_('behavior.tooltip');
JHTML::_('behavior.switcher');
// Load component specific configurations
$table =& JTable::getInstance('component');
$table->loadByOption( 'com_users' );
$userparams = new JParameter( $table->params, JPATH_ADMINISTRATOR.DS.'components'.DS.'com_users'.DS.'config.xml' );
$files_row = KFactory::get('com://admin/files.model.paths')->identifier('files.files')->getItem();
$params = json_decode($files_row->parameters);
$params->image_path = $files_row->path_value;
$mediaparams = new JParameter('', JPATH_ADMINISTRATOR.'/components/com_files/config.xml');
$mediaparams->loadObject($params);
// Build the component's submenu
$contents = '';
$tmplpath = dirname(__FILE__).DS.'tmpl';
ob_start();
require_once($tmplpath.DS.'navigation.php');
$contents = ob_get_contents();
ob_end_clean();
// Set document data
$document =& JFactory::getDocument();
$document->setBuffer($contents, 'modules', 'submenu');
// Load settings for the FTP layer
jimport('joomla.client.helper');
$ftp =& JClientHelper::setCredentialsFromRequest('ftp');
?>
<form action="index.php" method="post" name="adminForm" autocomplete="off">
<?php if ($ftp) {
require_once($tmplpath.DS.'ftp.php');
} ?>
<div id="config-document">
<div id="page-site">
<table class="noshow">
<tr>
<td width="65%">
<?php require_once($tmplpath.DS.'config_site.php'); ?>
</td>
<td width="35%">
<?php require_once($tmplpath.DS.'config_seo.php'); ?>
</td>
</tr>
</table>
</div>
<div id="page-system">
<table class="noshow">
<tr>
<td width="60%">
<?php require_once($tmplpath.DS.'config_system.php'); ?>
<fieldset class="adminform">
<legend><?php echo JText::_( 'User Settings' ); ?></legend>
<?php echo $userparams->render('userparams'); ?>
</fieldset>
<fieldset class="adminform">
<legend><?php echo JText::_( 'Media Settings' ); ?>
<span class="error hasTip" title="<?php echo JText::_( 'Warning' );?>::<?php echo JText::_( 'WARNPATHCHANGES' ); ?>">
<?php echo ConfigApplicationView::WarningIcon(); ?>
</span>
</legend>
<?php echo $mediaparams->render('mediaparams'); ?>
</fieldset>
</td>
<td width="40%">
<?php require_once($tmplpath.DS.'config_debug.php'); ?>
<?php require_once($tmplpath.DS.'config_cache.php'); ?>
<?php require_once($tmplpath.DS.'config_session.php'); ?>
</td>
</tr>
</table>
</div>
<div id="page-server">
<table class="noshow">
<tr>
<td width="60%">
<?php require_once($tmplpath.DS.'config_server.php'); ?>
<?php require_once($tmplpath.DS.'config_locale.php'); ?>
<?php require_once($tmplpath.DS.'config_ftp.php'); ?>
</td>
<td width="40%">
<?php require_once($tmplpath.DS.'config_database.php'); ?>
<?php require_once($tmplpath.DS.'config_mail.php'); ?>
</td>
</tr>
</table>
</div>
</div>
<div class="clr"></div>
<input type="hidden" name="c" value="global" />
<input type="hidden" name="live_site" value="<?php echo isset($row->live_site) ? $row->live_site : ''; ?>" />
<input type="hidden" name="option" value="com_config" />
<input type="hidden" name="secret" value="<?php echo $row->secret; ?>" />
//.........这里部分代码省略.........