Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Nab 15 posts 35 karma points
    Jun 27, 2013 @ 01:30
    Nab
    0

    What are the possible options?

    Hi guys

    I have got ublogsy along with umbraco configured for a news websites. I have customized quite a bit. Editors publish content on it daily and most of the times also schedule to publish for few days later. However we dont ahve any way to remember who set which article to be published later other than manually recording it. 

    So I am thinking of making a page or tab to an existing page inside umbraco backend (not frontend on the website!) that would basically list all the documents that have not been published but have a 'publish at' date set. I can so easily do this if I wanted to using frontend stuff but not sure what I should do for backend. Is my option a data editor control and then using that custom data type? 

    Looking forward to your suggestions. 

    Thanks. 

  • Kevin Jump 2313 posts 14700 karma points MVP 7x c-trib
    Jun 27, 2013 @ 13:12
    Kevin Jump
    0

    you could do this quite easily if you added a tab to the dashboards. (look in config/dashboards.config for info.) 

    These files are just standard ascx pages, so you could build a basic page that enumerated the publish dates and lists them out. the ediors would then just have a list of pages from a tab on the root of your content section.

    you can use the edit link "/umbraco/actions/editContent.aspx?id={pageid}" to give editors a quick link back to the node. 

  • Nab 15 posts 35 karma points
    Jun 27, 2013 @ 20:54
    Nab
    0

    hey Kevin, that solves my problem pretty much. Thank you very much!

    I am writing the code for it now. However there is something strange that I noticed that inside Umbraco.Web.UI project all the dashboard built in user controls like latestEdits.ascx etc they have a codebehind syntax but I cant seem to find the codebehind file anywhere in the solution. Is it added as a library? 

  • Kevin Jump 2313 posts 14700 karma points MVP 7x c-trib
    Jun 27, 2013 @ 21:00
    Kevin Jump
    0

    i think the core - the code behind is in one of hte dlls, you can either produce a code behind user control and put your dll in the bin folder - (or you might be able to put the code file in app_code) - or you can do it inline. it should work

     

  • Nab 15 posts 35 karma points
    Jun 27, 2013 @ 21:03
    Nab
    0

    Thanks mate! I will go down the app_code route and if that doesnt work then dll. Inline coding is not exactly my strength :)

Please Sign in or register to post replies

Write your reply to:

Draft