本文整理汇总了PHP中Avatar::removePicture方法的典型用法代码示例。如果您正苦于以下问题:PHP Avatar::removePicture方法的具体用法?PHP Avatar::removePicture怎么用?PHP Avatar::removePicture使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Avatar
的用法示例。
在下文中一共展示了Avatar::removePicture方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: removeAvatar
/**
* Pull a user account (by username) and remove the avatar file associated.
*
* @param $username string, the username
* @return true or false (true iff action was successful)
*/
function removeAvatar($username)
{
global $IP;
$user = User::newFromName($username);
$userID = $user->getID();
if ($userID > 0) {
$ret = Avatar::removePicture($userID);
if (preg_match('@SUCCESS@', $ret)) {
return true;
} else {
return false;
}
} else {
return false;
}
}
示例2: Article
if ($title && $title->exists() && $title->getNamespace() != NS_MAIN) {
print 'Deleting article ' . $wgContLang->getNSText($row->pb_namespace) . ':' . $title->getText() . "\n";
$article = new Article($title);
$article->doDelete('Bad page');
$deletion = true;
}
if ($page['ns'] == NS_USER) {
$user = User::newFromName($page['name']);
if ($user && $user->getID() > 0) {
if (ProfileBox::removeUserData($user)) {
print "Removed profilebox for " . $user->getName() . "\n";
$deletion = true;
}
$ra = Avatar::getAvatarRaw($user->getName());
if ($ra['url'] != '') {
if (preg_match("@SUCCESS@", Avatar::removePicture($user->getID()))) {
print "Remove avatar picture for " . $user->getName() . "\n";
$deletion = true;
}
}
}
}
if ($deletion) {
$deleted[] = array($page['name'], $page['ns']);
$n++;
}
//Safety check to only delete a maximum of 100 articles
if ($n > $max_deletes) {
break;
}
}