本文整理汇总了PHP中Attachments::getAttachLink方法的典型用法代码示例。如果您正苦于以下问题:PHP Attachments::getAttachLink方法的具体用法?PHP Attachments::getAttachLink怎么用?PHP Attachments::getAttachLink使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Attachments
的用法示例。
在下文中一共展示了Attachments::getAttachLink方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: df
}
}
if ($do == "del" && !empty($id)) {
$deleted = false;
$deleted = $standard->del($id);
}
if ($do == "edit") {
if (!empty($id)) {
$item = $standard->read("*", $id);
if (!empty($item['publish_time'])) {
$item['publish_date'] = df($item['publish_time']);
}
if (!empty($item['force_time'])) {
$item['force_date'] = df($item['force_time']);
}
if (!empty($item['attachment_id'])) {
$item['attach'] = $attachment_model->getAttachLink($item['attachment_id']);
}
setvar("item", $item);
}
setvar("StandardTypes", $_PB_CACHE['standardtype']);
$tpl_file = "standard.edit";
template($tpl_file, true);
}
}
$amount = $standard->findCount(null, $conditions);
$page->setPagenav($amount);
$result = $standard->findAll("Standard.*,t.name AS typename", array("LEFT JOIN {$tb_prefix}standardtypes t ON Standard.type_id=t.id"), $conditions, "Standard.id DESC", $page->firstcount, $page->displaypg);
setvar("Items", $result);
setvar("ByPages", $page->pagenav);
template($tpl_file);