勾选视频下方的分类,将该视频归类到对应的分类;取消勾选,则将视频从该分类中移除。

$file) { //跳过非.url文件 if (!in_array($file['extension'], $videoExts) || empty($file['shortcut'])) { continue; } $snapshot = !empty($file['cover']) ? $imgPreffix . $file['cover'] : '/img/default.png'; $title = !empty($file['title']) ? Html::mb_substr($file['title'], 0, 33, 'utf-8') : $file['filename']; $platform = Html::getShareVideosPlatform($file['shortcut']['url']); $pubDate = date('m/d', $file['fstat']['ctime']); $imgSrc = $index < 4 ? " src=\"{$snapshot}\"" : ''; $imgAlt = $index < 4 ? " alt=\"{$title}\"" : ''; $imgCls = $index < 4 ? '' : 'lazy'; $myTags = Html::getFavsTags($file['filename'], $viewData['tags']); $tagsHtml = ''; foreach ($allTags as $tagName) { $tagChecked = in_array($tagName, $myTags) ? ' checked="checked"' : ''; $tagsHtml .= << {$tagName} eof; } echo <<
{$tagsHtml}
eof; } } ?>