Exemple #1
0
        public ActionResult UpdateContent(int id, bool isGalleryItem, int? parentId, string contentId, string title, string description, string keywords, string text, bool? horisontal, int sortOrder)
        {
            using (var context = new ContentStorage())
            {

                Content parent = null;
                if (parentId != null)
                    parent = context.Content.Select(c => c).Where(c => c.Id == parentId).First();
                Content content = id != int.MinValue ? context.Content.Select(c => c).Where(c => c.Id == id).First() : new Content();
                content.Parent = parent;
                content.ContentId = contentId;
                if (horisontal.HasValue)
                    content.Horisontal = horisontal.Value;
                content.Title = title;
                content.Description = description;
                content.Keywords = keywords;
                content.Text = HttpUtility.HtmlDecode(text);
                content.IsGalleryItem = isGalleryItem;
                content.SortOrder = sortOrder;
                if (content.Id == 0)
                    context.AddToContent(content);
                context.SaveChanges();

                return RedirectToAction("Index", "Content", new { id = contentId });
            }
        }
Exemple #2
0
 public ActionResult AddGalleryItem(int parentId, string contentId)
 {
     string file = Request.Files["image"].FileName;
     if (!string.IsNullOrEmpty(file))
     {
         string newFileName = IOHelper.GetUniqueFileName("~/Content/GalleryImages", file);
         string filePath = Path.Combine(Server.MapPath("~/Content/GalleryImages"), newFileName);
         Request.Files["image"].SaveAs(filePath);
         using (var context = new ContentStorage())
         {
             var galleryItem = new Gallery();
             galleryItem.ContentReference.EntityKey = new EntityKey("ContentStorage.Content", "Id", parentId);
             galleryItem.ImageSource = newFileName;
             context.AddToGallery(galleryItem);
             context.SaveChanges();
         }
     }
     return RedirectToAction("Index", "Content", new { id = contentId });
 }
Exemple #3
0
        public ActionResult DeleteContentItem(int id)
        {
            using (var context = new ContentStorage())
            {
                Content content = context.Content.Include("Children").Where(c => c.Id == id).FirstOrDefault();
                string contentId = content.ContentId;
                if (content.Children.Count == 0)
                {
                    context.DeleteObject(content);
                    context.SaveChanges();
                }
                return RedirectToAction("Index", "Content", new { id = "About" });
            }

        }
Exemple #4
0
        public ActionResult DeleteArticle(int id)
        {
            using (ContentStorage context = new ContentStorage())
            {
                List<Article> articles = context.Article.Where(a => a.Id == id).ToList();

                foreach (var item in articles)
                {
                    context.DeleteObject(item);
                }
                context.SaveChanges();
            }
            return RedirectToAction("Index", "News");
        }
Exemple #5
0
        public ActionResult AddEditArticle(string id,
            string title,
            string date,
            string keywords,
            string description,
            string text,
            bool isNew) 
        {

            using (ContentStorage context = new ContentStorage())
            {
                Article article;
                if (isNew)
                {
                    article = new Article();
                    article.Name = id;
                    context.AddToArticle(article);
                }
                else
                {
                    int newsId = Convert.ToInt32(id);
                    article = context.Article.Where(a => a.Id == newsId).First();
                }

                article.Title = title;
                article.Date = DateTime.Parse(date);
                article.Text = HttpUtility.HtmlDecode(text);
                article.Description = description;
                article.Keywords = keywords;
                context.SaveChanges();
            }
            return RedirectToAction("Index", "News");
        }
Exemple #6
0
 public ActionResult DeleteGalleryItem(int id, string contentId)
 {
     using (var context = new ContentStorage())
     {
         Gallery galleryItem = context.Gallery.Select(g => g).Where(g => g.Id == id).FirstOrDefault();
         context.DeleteObject(galleryItem);
         context.SaveChanges();
         return RedirectToAction("Index", "Content", new { id = contentId });
     }
 }