本文整理汇总了PHP中BlockInstance::get_data方法的典型用法代码示例。如果您正苦于以下问题:PHP BlockInstance::get_data方法的具体用法?PHP BlockInstance::get_data怎么用?PHP BlockInstance::get_data使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlockInstance
的用法示例。
在下文中一共展示了BlockInstance::get_data方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: render_instance
public static function render_instance(BlockInstance $instance, $editing = false)
{
$configdata = $instance->get('configdata');
$smarty = smarty_core();
if (!empty($configdata['collection'])) {
$views = $instance->get_data('collection', $configdata['collection'])->views();
if (!empty($views)) {
$smarty->assign('views', $views['views']);
}
}
$smarty->assign('currentview', $instance->get('view'));
return $smarty->fetch('blocktype:navigation:navigation.tpl');
}
示例2: instance_config_validate
public static function instance_config_validate(Pieform $form, $values)
{
if (strpos($values['url'], '://') == false) {
// try add on http://
$values['url'] = 'http://' . $values['url'];
} else {
$proto = substr($values['url'], 0, strpos($values['url'], '://'));
if (!in_array($proto, array('http', 'https'))) {
$form->set_error('url', get_string('invalidurl', 'blocktype.externalfeed'), false);
}
}
// If you're changing the URL on an authenticated feed, force them to re-enter the password
if (!empty($values['blockconfig'])) {
$instance = new BlockInstance($values['blockconfig']);
$configdata = $instance->get('configdata');
if (!empty($configdata['feedid'])) {
$olddata = $instance->get_data('feed', $configdata['feedid']);
if ($olddata) {
if ($values['url'] != $olddata->url && $olddata->authpassword != '' && $values['authpassword']['submittedvalue'] === null) {
$form->set_error('authpassword', get_string('reenterpassword', 'blocktype.externalfeed'), false);
return;
}
}
}
}
if (!$form->get_error('url')) {
try {
$authpassword = $values['authpassword']['submittedvalue'] !== null ? $values['authpassword']['submittedvalue'] : $values['authpassword']['defaultvalue'];
self::parse_feed($values['url'], $values['insecuresslmode'], $values['authuser'], $authpassword);
return;
} catch (XML_Feed_Parser_Exception $e) {
$form->set_error('url', get_string('invalidfeed', 'blocktype.externalfeed', hsc($e->getMessage())), false);
}
}
}