File: /var/www/ilya/data/www/irkboard.ru/admin/applications/forums/modules_public/ajax/markasread.php
<?php
/**
* Invision Power Services
* IP.Board v3.0.1
* Ajax Functions For Topics
* Last Updated: $Date: 2009-06-10 03:35:12 -0400 (Wed, 10 Jun 2009) $
*
* @author $Author: matt $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/community/board/license.html
* @package Invision Power Board
* @subpackage Forums
* @link http://www.invisionpower.com
* @version $Revision: 4747 $
*
*/
class public_forums_ajax_markasread extends ipsAjaxCommand
{
/**
* IPS command execution
*
* @access public
* @param object ipsRegistry reference
* @return void
*/
public function doExecute( ipsRegistry $registry )
{
/* Ensure cookies are sent */
$this->settings['no_print_header'] = 0;
//-----------------------------------------
// What are we doing?
//-----------------------------------------
switch( $this->request['marktype'] )
{
default:
case 'forum':
return $this->markForumAsRead();
break;
}
}
/**
* Marks the specified forum as read
*
* @access public
* @return void
**/
public function markForumAsRead()
{
//-----------------------------------------
// INIT
//-----------------------------------------
$forum_id = intval( $this->request['forumid'] );
//$return_to_id = intval( $this->request['returntoforumid'] );
$forum_data = $this->registry->getClass('class_forums')->forum_by_id[ $forum_id ];
$children = $this->registry->getClass('class_forums')->forumsGetChildren( $forum_data['id'] );
$save = array();
//-----------------------------------------
// Check
//-----------------------------------------
if ( ! $forum_data['id'] )
{
$this->returnJsonError( 'markread_no_id' );
}
/* Turn off instant updates and write back tmp markers in destructor */
$this->registry->classItemMarking->disableInstantSave();
//-----------------------------------------
// Come from the index? Add kids
//-----------------------------------------
if ( $this->request['i'] )
{
if ( is_array( $children ) and count($children) )
{
foreach( $children as $id )
{
$this->registry->classItemMarking->markRead( array( 'forumID' => $id ) );
}
}
}
//-----------------------------------------
// Add in the current forum...
//-----------------------------------------
$this->registry->classItemMarking->markRead( array( 'forumID' => $forum_id ) );
$this->returnJsonArray( array( 'result' => 'success') );
}
}