本文整理汇总了C#中ContentPost.HasImg方法的典型用法代码示例。如果您正苦于以下问题:C# ContentPost.HasImg方法的具体用法?C# ContentPost.HasImg怎么用?C# ContentPost.HasImg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ContentPost
的用法示例。
在下文中一共展示了ContentPost.HasImg方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: getStatus
private String getStatus( ContentPost post ) {
if (post.HasImg()==false) return "";
return "<img src=\""+strUtil.Join( sys.Path.Img, "img.gif" )+"\" />";
}
示例2: getTypeIcon
public static String getTypeIcon( IPageAdminSection sectionController, ContentPost post ) {
String typeIcon = sectionController.GetSectionIcon( post.SectionId );
if (strUtil.HasText( typeIcon )) return typeIcon;
if (post.TypeName == typeof( ContentVideo ).FullName) return iconVideo;
if (post.TypeName == typeof( ContentImg ).FullName) return iconPic;
if (post.TypeName == typeof( ContentPoll ).FullName) return iconPoll;
if (post.HasImg()) return iconPic;
return "";
}
示例3: bindDetail
private void bindDetail( int id, ContentPost post )
{
String content;
String pageSeparator = getPageSeparator( post.Content );
if (pageSeparator == null) {
content = post.Content;
}
else {
content = getPagedContent( post, pageSeparator );
}
if (post.HasImg()) {
content = string.Format( "<div style=\"text-align:center;\"><img src=\"{0}\" />", post.GetImgMedium() ) + "</div>" + content;
}
set( "post.Content", content );
}
示例4: bindDetail
private void bindDetail( int id, ContentPost post )
{
String content;
String pageSeparator = getPageSeparator( post.Content );
if (pageSeparator == null) {
content = post.Content;
}
else {
content = getPagedContent( post, pageSeparator );
}
if (post.HasImg()) {
String imgUrl = post.GetImgMedium();
if (content.IndexOf( imgUrl ) < 0) {
content = string.Format( "<div class=\"post-detail-content-pic\"><img src=\"{0}\" /></div>", imgUrl )
+ content;
}
}
set( "post.Content", content );
}
示例5: getTypeIcon
public static String getTypeIcon( ContentPost post )
{
if (post.TypeName == typeof( ContentVideo ).FullName) return iconVideo;
if (post.TypeName == typeof( ContentImg ).FullName) return iconPic;
if (post.HasImg()) return iconPic;
return "";
}
示例6: bindDetail
private void bindDetail( int id, ContentPost post )
{
set( "post.Title", post.GetTitle() );
set( "post.Author", post.Author );
set( "post.Created", post.Created );
String tag = post.Tag.List.Count > 0 ? tag = "tag: " + post.Tag.HtmlString : "";
String src = getSrc( post );
String replies = getReplies( post );
set( "post.Tag", tag );
set( "post.Replies", replies );
set( "post.Hits", post.Hits );
set( "post.Source", src );
if (post.Creator != null) {
set( "post.Submitter", string.Format( "<a href=\"{0}\" target=\"_blank\">{1}</a>", Link.ToMember( post.Creator ), post.Creator.Name ) );
}
else {
set( "post.Submitter", "ÎÞ" );
}
bindSummary( post );
String content;
String pageSeparator = getPageSeparator( post.Content );
if (pageSeparator == null) {
content = post.Content;
}
else {
content = getPagedContent( post, pageSeparator );
}
if (post.HasImg()) {
content = string.Format( "<div style=\"text-align:center;\"><img src=\"{0}\" />", post.GetImgMedium() ) + "</div>" + content;
}
if (post.IsAttachmentLogin == 1 && ctx.viewer.IsLogin == false) {
content += "<div class=\"downloadWarning\"><div>" + alang( "downloadNeedLogin" ) + "</div></div>";
}
else {
content = addAttachment( post, content );
}
set( "post.Content", content );
}
示例7: ValidateVideo
public static ContentPost ValidateVideo( ContentPost post, MvcContext ctx ) {
if (strUtil.IsNullOrEmpty( post.Title ))
ctx.errors.Add( lang.get( "exName" ) );
if (post.HasImg()==false)
ctx.errors.Add( ctx.controller.alang( "exVideoImgUrl" ) );
if (strUtil.IsNullOrEmpty( post.SourceLink ))
ctx.errors.Add( ctx.controller.alang( "exVideoLink" ) );
post.CategoryId = PostCategory.Video;
post.TypeName = typeof( ContentVideo ).FullName;
return post;
}
示例8: saveUploadPic
private void saveUploadPic( long postId, ContentPost post ) {
if (ctx.GetFiles().Count <= 0) {
errors.Add( alang( "plsUpImg" ) );
run( AddImgList, postId );
return;
}
for (int i = 0; i < ctx.GetFiles().Count; i++) {
Result result = Uploader.SaveImg( ctx.GetFiles()[i] );
if (result.HasErrors) {
errors.Join( result );
}
else {
ContentImg img = new ContentImg();
img.Post = post;
img.ImgUrl = result.Info.ToString();
img.Description = ctx.Post( "Text" + (i + 1) );
imgService.CreateImg( img );
if ((i == 0) && post.HasImg() == false) {
post.ImgLink = img.ImgUrl;
imgService.UpdateImgLogo( post );
}
}
}
if (errors.Errors.Count >= ctx.GetFiles().Count) {
errors.Errors.Clear();
errors.Add( alang( "plsUpImg" ) );
run( AddImgList, postId );
}
else {
redirect( AddImgList, postId );
}
}
示例9: saveLinkPicSingle
private void saveLinkPicSingle( string picUrl, string picDesc, ContentPost post, int i ) {
ContentImg img = new ContentImg();
img.Post = post;
img.ImgUrl = picUrl;
img.Description = picDesc;
imgService.CreateImg( img );
if ((i == 1) && post.HasImg() == false) {
post.ImgLink = img.ImgUrl;
imgService.UpdateImgLogo( post );
}
}