Recent content by Arik

  1. Arik

    [RT] Online Status Ribbon

    Conversations are tricky. The database query for posts is built up in the model...and this mod tapped into that query builder to inject an additional join. The query for conversations doesn't go through the same builder logic, so it couldn't get tapped into. I never looked into profiles or cards.
  2. Arik

    [RT] Online Status Ribbon

    It sends the actual online status of the user to the template...so you can either key off of the value, or you'd have to modify it to use a true/false check.
  3. Arik

    [RT] Online Status Ribbon

    in EXTRA.css, add this: .UserOnlineInvisible span { background-color: #ffff00; } That should set the color to yellow.
  4. Arik

    [RT] Online Status Ribbon

    There's an "online-invisible" phrase that should help you out. Change the text to whatever you want to best indicate that they're invisible.
  5. Arik

    [RT] Online Status Ribbon

    You either haven't ftp'd the required files to the right place, or PHP can't read those files (wrong permissions).
  6. Arik

    Extending ControllerPublic

    Re-review your datawriter code. I'd actually step through the calls in the default datawriter class so you can see where the error is being thrown. That'd give you a hint. I actually see two issues. The first issue seems to be a logistical issue in your controller. You ensure the user isn't...
  7. Arik

    [RT] Online Status Ribbon

    I think it's disingenuous to assert copyright claim over it when, by your definition, it's stolen code. I think it's further disingenuous to request donations for it. If these points are addressed, I have no issues.
  8. Arik

    [RT] Online Status Ribbon

    IIRC, I didn't hook it into the Conversations model, so the data isn't available to support the template.
  9. Arik

    [RT] Online Status Ribbon

    Okay, I'm confused. Isn't this my code, with a few edits, redistributed without prior permission? Oh. Nice.
  10. Arik

    Load Extra data in posts

    No. The second isn't checking if it's set. It's checking to see if it contains the self::FETCH_USER bit. That's why there's only one ampersand.
  11. Arik

    Conversation with User on Moderation

    Sorry for the delay, life got in my way. This is fixed in 1.1.
  12. Arik

    Conversation with User on Moderation

    I'll take a look at it. Thanks!
  13. Arik

    Online Status Indicator within Threads

    Can it? Yes. Does it? Not yet. If I get done this weekend what I anticipate getting done, I'm going to update it by early next week.
  14. Arik

    How do I include PHP?

    Almost completely. ;) The "Controller" is comprised of a bunch of files that have actionXXX methods. Think of those methods as individual PHP pages. They call in models & helpers for getting information, data writers for pushing it to the database. They prepare data, and when they're done...
  15. Arik

    How do I include PHP?

    To get content into a specific template, I'd look at using template hooks. http://xenforo.com/community/threads/how-to-use-template-hooks.13167/
Top Bottom