本文整理汇总了PHP中Gdn::slice方法的典型用法代码示例。如果您正苦于以下问题:PHP Gdn::slice方法的具体用法?PHP Gdn::slice怎么用?PHP Gdn::slice使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Gdn
的用法示例。
在下文中一共展示了Gdn::slice方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: val
</h1>
<?php
$CurrentStep = val('CurrentStep', $this->Data, 0);
$Complete = FALSE;
if ($CurrentStep < 1) {
// The import hasn't started yet.
echo '<div class="Info">', t('Garden.Import.Info', 'You\'re almost ready to start the import.
Please review the information below and click <b>Start Import</b> to begin the import.'), '</div>';
} else {
$Steps = val('Steps', $this->Data, array());
if (count($Steps) > 0 && !array_key_exists($CurrentStep, $Steps)) {
// The import is complete.
$Complete = TRUE;
// The import is complete.
echo '<div class="Info">', t('Garden.Import.Complete.Description', 'You have successfully completed an import.
Click <b>Finished</b> when you are ready.'), '</div>';
echo Gdn::slice('/dashboard/role/defaultroleswarning');
} else {
// The import is in process.
echo '<div class="Info">', t('Garden.Import.Continue.Description', 'It appears as though you are in the middle of an import.
Please choose one of the following options.'), '</div>';
}
}
include $this->fetchViewLocation('stats', 'import', 'dashboard');
if ($CurrentStep < 1) {
echo anchor(t('Start Import'), 'dashboard/import/go/' . urlencode(Gdn::session()->transientKey()), 'Button'), ' ', anchor(t('Restart'), 'dashboard/import/restart/' . urlencode(Gdn::session()->transientKey()), 'Button');
} elseif (!$Complete) {
echo anchor(t('Continue Import'), 'dashboard/import/go/' . urlencode(Gdn::session()->transientKey()), 'Button'), ' ', anchor(t('Restart'), 'dashboard/import/restart/' . urlencode(Gdn::session()->transientKey()), 'Button');
} else {
echo anchor(t('Finished'), 'dashboard/import/restart/' . urlencode(Gdn::session()->transientKey()), 'Button');
}
示例2: configure
/**
* Configure authentication method.
*
* @since 2.0.3
* @access public
*
* @param string $AuthenticationSchemeAlias
*/
public function configure($AuthenticationSchemeAlias = null)
{
$Message = t("Please choose an authenticator to configure.");
if (!is_null($AuthenticationSchemeAlias)) {
$AuthenticatorInfo = Gdn::authenticator()->getAuthenticatorInfo($AuthenticationSchemeAlias);
if ($AuthenticatorInfo !== false) {
$this->AuthenticatorChoice = $AuthenticationSchemeAlias;
if (array_key_exists($AuthenticationSchemeAlias, $this->ConfigureList) && $this->ConfigureList[$AuthenticationSchemeAlias] !== false) {
echo Gdn::slice($this->ConfigureList[$AuthenticationSchemeAlias]);
return;
} else {
$Message = sprintf(t("The %s Authenticator does not have any custom configuration options."), $AuthenticatorInfo['Name']);
}
}
}
$this->setData('ConfigureMessage', $Message);
$this->render();
}