File size: 1Kb
<?php
/**
* mooSocial - The Web 2.0 Social Network Software
* @website: http://www.moosocial.com
*/
class AdminNotificationsController extends AppController
{
public function admin_ajax_view($id = null)
{
if(!empty($id))
{
$this->_checkPermission();
$this->AdminNotification->id = $id;
$notification = $this->AdminNotification->read();
$this->AdminNotification->save( array( 'read' => 1 ) );
if ( !empty( $notification['AdminNotification']['message'] ) )
$this->set('notification', $notification);
else
$this->redirect( FULL_BASE_URL . $notification['AdminNotification']['url'] );
}
else
$this->redirect('/admin');
}
public function admin_ajax_clear()
{
$this->autoRender = false;
$this->_checkPermission(array('super_admin' => 1));
$this->AdminNotification->deleteAll( array('AdminNotification.id > 0') );
}
}