本文整理汇总了PHP中Objects::getName方法的典型用法代码示例。如果您正苦于以下问题:PHP Objects::getName方法的具体用法?PHP Objects::getName怎么用?PHP Objects::getName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Objects
的用法示例。
在下文中一共展示了Objects::getName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getName
public function getName($id = false)
{
if ($id === false) {
$id = $this->id;
}
$rez = $id;
switch ($id) {
case 'recent':
case 'commented':
case 'modified':
case 'added':
return L\get(ucfirst($id));
default:
$rez = Objects::getName($id);
break;
}
return $rez;
}
示例2: notifyAdminAboutContent
function notifyAdminAboutContent($contentId)
{
//select latest file with that content
$fileIds = DataModel\Files::getContentIdReferences($contentId);
$fileInfo = '';
if (!empty($fileIds)) {
$p = new Objects\Plugins\SystemProperties();
$fileId = array_pop($fileIds);
$data = $p->getData($fileId);
$d =& $data['data'];
$fileInfo = '<table border="0">' . '<tr><td>ID:</td><td>' . $d['id'] . '</td></tr>' . '<tr><td>Name:</td><td>' . Objects::getName($fileId) . '</td></tr>' . '<tr><td>Path:</td><td>' . $d['path'] . '</td></tr>' . '<tr><td>Creator: </td><td>' . $d['cid_text'] . '</td></tr>' . '</table>';
}
$err = error_get_last();
if (!is_null($err) && !in_array($err['type'], array(E_NOTICE, E_WARNING))) {
$fileInfo .= "\n\r<hr />\n\r" . $err['message'];
}
System::notifyAdmin('Casebox error extracting file content #' . $contentId, $fileInfo);
}