本文整理汇总了PHP中c2cTools::Letter2Module方法的典型用法代码示例。如果您正苦于以下问题:PHP c2cTools::Letter2Module方法的具体用法?PHP c2cTools::Letter2Module怎么用?PHP c2cTools::Letter2Module使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类c2cTools
的用法示例。
在下文中一共展示了c2cTools::Letter2Module方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: format_book_data
function format_book_data($books, $type, $main_id, $is_moderator = false)
{
$type_list = $type . '_list';
$module = 'books';
$main_module = c2cTools::Letter2Module(substr($type, 1, 1));
$strict = 1;
$html = '<div class="association_content_inside_field">';
foreach ($books as $book) {
$doc_id = $book['id'];
$idstring = $type . '_' . $doc_id;
$class = 'linked_elt';
$html .= '<div class="' . $class . '" id="' . $idstring . '">' . '<div class="assoc_img picto_' . $module . '" title="' . ucfirst(__($module)) . '"></div>';
$name = ucfirst($book['name']);
$url = "@document_by_id_lang_slug?module={$module}&id={$doc_id}" . '&lang=' . $book['culture'] . '&slug=' . make_slug($book['name']);
$html .= link_to($name, $url);
if (isset($book['author']) && trim($book['author']) != '') {
$html .= ' - ' . $book['author'];
}
if (isset($book['publication_date']) && trim($book['publication_date']) != '') {
$html .= ' - ' . $book['publication_date'];
}
if ($is_moderator && $main_id && !c2cTools::mobileVersion()) {
$html .= c2c_link_to_delete_element($type, $doc_id, $main_id, false, $strict);
}
$html .= '</div>';
}
$html .= '</div>';
return $html;
}