本文整理匯總了PHP中Alias::setName方法的典型用法代碼示例。如果您正苦於以下問題:PHP Alias::setName方法的具體用法?PHP Alias::setName怎麽用?PHP Alias::setName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Alias
的用法示例。
在下文中一共展示了Alias::setName方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testToArray
public function testToArray()
{
$alias = new Alias();
$alias->setName('name');
$alias->setDescription('description');
$alias->setPackage('bootstrap');
$alias->setVersion('version');
$alias->setSource('source');
$this->assertSame(['name' => 'name', 'description' => 'description', 'package' => 'bootstrap', 'version' => 'version', 'source' => 'source'], $alias->toArray());
}
示例2: array
$correct = true;
$errorMsgs = array();
if (empty($f_name)) {
$correct = false;
$errorMsgs[] = getGS('You must fill in the $1 field.', '<B>Name</B>');
}
$alias = new Alias($f_alias_id);
$aliases = 0;
if ($correct) {
if ($alias->getName() != $f_name) {
$aliasDups = count(Alias::GetAliases(null, null, $f_name));
if ($aliasDups <= 0) {
$success = $alias->setName($f_name);
if ($success) {
$logtext = getGS('The site alias for publication "$1" has been modified to "$2".',
$publicationObj->getName(), $f_name);
Log::Message($logtext, $g_user->getUserId(), 153);
}
}
else {
$errorMsgs[] = getGS('Another alias with the same name exists already.');
$correct = false;
}
}
}
if ($correct) {
camp_html_goto_page("/$ADMIN/pub/aliases.php?Pub=$f_publication_id&Alias=$f_alias_id");