Example #1
0
        public static PostTagCollection GetPostTagCollection(this UmbracoHelper helper, IMasterModel masterModel)
        {
            var tagsBaseUrl = masterModel.RootBlogNode.Value <string>("tagsUrlName");

            var contentByTags = helper.GetContentByTags(masterModel, "ArticulateTags", tagsBaseUrl);

            return(new PostTagCollection(contentByTags));
        }
Example #2
0
        /// <summary>
        /// Returns a list of all categories
        /// </summary>
        /// <param name="helper"></param>
        /// <param name="masterModel"></param>
        /// <returns></returns>
        public static PostTagCollection GetAllCategories(this UmbracoHelper helper, IMasterModel masterModel)
        {
            //TODO: Make this somehow only lookup tag categories that are relavent to posts underneath the current Articulate root node!
            var listNode = masterModel.RootBlogNode.Children
                           .FirstOrDefault(x => x.DocumentTypeAlias.InvariantEquals("ArticulateArchive"));

            if (listNode == null)
            {
                throw new InvalidOperationException("An ArticulateArchive document must exist under the root Articulate document");
            }
            //create a blog model of the main page
            var rootPageModel = new ListModel(listNode);
            var tagsBaseUrl   = masterModel.RootBlogNode.GetPropertyValue <string>("tagsUrlName");

            var contentByTags = helper.GetContentByTags(rootPageModel, "ArticulateCategories", tagsBaseUrl);

            return(new PostTagCollection(contentByTags));
            /// return helper.TagQuery.GetAllContentTags("ArticulateCategories").Select(x => x.Text).OrderBy(x => x);
        }
Example #3
0
        public static PostTagCollection GetPostTagCollection(this UmbracoHelper helper, IMasterModel masterModel)
        {
            var listNode = masterModel.RootBlogNode.Children
                           .FirstOrDefault(x => x.DocumentTypeAlias.InvariantEquals("ArticulateArchive"));

            if (listNode == null)
            {
                throw new InvalidOperationException("An ArticulateArchive document must exist under the root Articulate document");
            }

            //create a blog model of the main page
            var rootPageModel = new ListModel(listNode);

            var tagsBaseUrl = masterModel.RootBlogNode.GetPropertyValue <string>("tagsUrlName");

            var contentByTags = helper.GetContentByTags(rootPageModel, "ArticulateTags", tagsBaseUrl);

            return(new PostTagCollection(contentByTags));
        }