Recent content by StarRiver

  1. StarRiver

    XF 1.5 Best code to determine if user is watching a forum?

    That worked. Thanks! And yes, _getForumWatchModel() is defined in library > Xenforo > ControllerPublic > Watched.php
  2. StarRiver

    XF 1.5 Best code to determine if user is watching a forum?

    I've been trying $this->_getForumWatchModel()->getUserForumWatchByForumId($user['user_id'], $node_id) but I'm getting "undefined function" errors. Thanks!
  3. StarRiver

    How can I retrieve default_watch_state for a user?

    Does this look like it should work? $node_id = $this->_input->filterSingle('node_id', XenForo_Input::UINT); $forum = $this->_getForumModel()->getForumById($node_id); if ($forum["auto_subscription"]){ $ForumModel = $this->_getForumModel()...
  4. StarRiver

    How can I retrieve default_watch_state for a user?

    Thanks Mike. Here's a larger chunk of the code: $node_id = $this->_input->filterSingle('node_id', XenForo_Input::UINT); $forum = $this->_getForumModel()->getForumById($node_id); if ($forum["auto_subscription"]){ $ForumModel = $this->_getForumModel()...
  5. StarRiver

    How can I retrieve default_watch_state for a user?

    Hmm ... 30 views but no replies. I must not be asking my question well. Is there additional info I should provide so that I can get some help on this? It seems like there ought to be an easy way to get the user's value for 'default_watch_state' but I'm too much of a Xenforo novice to see how...
  6. StarRiver

    How can I retrieve default_watch_state for a user?

    I have a bit of code that I'm trying to tweak that currently says: if (isset($permissions['view']) AND $permissions['view']){$ThreadWatchModel->setThreadWatchState($user['user_id'], $thread['thread_id'], 'watch_email'); I want to replace the constant: 'watch_email' with the user's value for...
  7. StarRiver

    XF 1.5 Send notification to poster?

    Is it possible to set up notifications so that the poster gets sent the same email that goes out to everyone else who is watching a forum/thread? I have members who like to get confirmation in this way.
  8. StarRiver

    XF 1.5 Is there a way to change the time span for "recent posts"?

    The URL command /?recent=1 returns a list of recent posts. Is there an option or a place to tweak the time span that is considered "recent"? I'd like to control this time span. Thanks!
  9. StarRiver

    Sending Periodical Newsletters or Digests to Members

    Thanks for the pointer to Monthly "Whats New" Email. I've downloaded it and will check it out. As for the paid-app, if you mean NetkingZ's XenDigest, it doesn't do what I need. I'm looking for the same kind of functionality as I used to have with Mark Hamill's phpBB Digest Mod. I'll probably...
  10. StarRiver

    Sending Periodical Newsletters or Digests to Members

    Great! How can I get a copy of what you are using?
  11. StarRiver

    Anyone interested in an open-source email digest add-on?

    If you would like XenForo to have an open-source email digest, please reply to this thread. Let's build momentum for it. I'm new to XenForo so I may have missed something but so far I haven't found any email digest script or add-on comparable, for example, to Mark Hamill's phpBB Digest Mod...
  12. StarRiver

    Sending Periodical Newsletters or Digests to Members

    I'm also interested in hearing about any email digest scripts that admins are using. NetkingZ's XenDigest doesn't work for me. What I need is something to gather the instant notification emails into a daily or weekly digest. Anyone out there with a working script or add-on? Thanks!
  13. StarRiver

    Daily Digest Email System

    @thegleek, I'm also interested in getting your complete package with the rewrite. What is the status of this script? Thanks!
Top Bottom