Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Notices

edited September 2006 in Vanilla 1.0 Help
Is there a way to add the notices like update reminder. I looked at the applicant extension yet that doesnt seem to work on board fullstop.

Comments

  • The "NewApplicants" add-on puts a message exactly where you want. You should be able to modify it to your purposes.
    However it only notifies if certain conditions are fulfilled (which may be the reason why you're not seeing anything):
    a) You must have the rights to approve new applicants... at the top if... $Context->Session->User->Permission('PERMISSION_APPROVE_APPLICANTS')
    b) have set the role for new applicants to require approval (if new applicants can post right away, they won't need approving = no message)
    c) there have to be new applicants waiting for approval... if $ApplicantCount > 0
  • lol ok i know all that, the thing is it doesnt work :P it gives me some error saying something about object non member or something but everything else is right. I also tried taking about all the if applicant stuff so it should display a permanent message there but that came up with some error aswell.
  • edited June 2006
    Mark added a new control: NoticeCollector, which is included in every page. I think you can just use the following method:
    AddNotice($Notice, $Position = '0', $ForcePosition = '0')
    So, you should use something like this in your code:
    $NoticeCollector->AddNotice("Your task 'My first task' is about to expire!");
    You don't need to add the position parameters. Just add the above line to one of the enabled extensions, and check if it works (haven't tried it myself)
  • yeah im thinking that i need to get a newer version off the svn as i dont think mine has that. It didnt seem to work.
  • Yep, it's in one of the latest revisions :)
  • now i just have to wait for abit of uploading :P then i will get on my way to completeing my part of it jazzman (i hope if all goes to plan) i dont care im slowing down the ToDo List :P
  • haha, np :) I'm still working on the other bits, so take your time :)
  • oh ok, mm now i have the new vanilla i hope to make my bit pretty soon if all goes to plan.
  • MarkMark Vanilla Staff
    Right on, Jazzman!

    I love it when I don't have to explain stuff :)
  • lol, i knew what do do just was baffled as it wasnt working. Crazy mark adding stuff without tell me :P
  • Jazzman i give up on the notice thing for the todo List. It just doesnt work!!!I dont know whether to put stuff in classes and make functions work right so ill leave it to someone who knows what they are doing as far as i got was doing an example one of how i think it should look see here http://www.forummods.net/vanilla/

    It will be easier for you as you can use your own code as you know how you have done things.

    the code for my notice is here
    $ItemNotice = "hello this is an example of a task that could be maed so well there you go really!"; $NoticeCollector->AddNotice("To Do Task : <b>$ItemNotice</b><div style='float: right;'><a href='?PostBackAction=ToDo'>Completed/Cancel</a></div> <br />Due Date: Today &nbsp; ");
  • what file do you put those codes in ?
This discussion has been closed.