| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Adminhtml/Block/Notification/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Adminhtml AdminNotification inbox grid
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Block_Notification_Grid extends Mage_Adminhtml_Block_Widget_Grid
{
protected function _construct()
{
$this->setSaveParametersInSession(true);
$this->setId('notificationGrid');
$this->setIdFieldName('notification_id');
$this->setDefaultSort('date_added', 'desc');
$this->setFilterVisibility(false);
}
/**
* Init backups collection
*/
protected function _prepareCollection()
{
$collection = Mage::getModel('adminnotification/inbox')
->getCollection()
->addRemoveFilter();
$this->setCollection($collection);
return parent::_prepareCollection();
}
/**
* Configuration of grid
*/
protected function _prepareColumns()
{
$this->addColumn('severity', array(
'header' => Mage::helper('adminnotification')->__('Severity'),
'width' => '60px',
'index' => 'severity',
'renderer' => 'adminhtml/notification_grid_renderer_severity',
));
$this->addColumn('date_added', array(
'header' => Mage::helper('adminnotification')->__('Date Added'),
'index' => 'date_added',
'width' => '150px',
'type' => 'datetime'
));
$this->addColumn('title', array(
'header' => Mage::helper('adminnotification')->__('Message'),
'index' => 'title',
'renderer' => 'adminhtml/notification_grid_renderer_notice',
));
$this->addColumn('actions', array(
'header' => Mage::helper('adminnotification')->__('Actions'),
'width' => '250px',
'sortable' => false,
'renderer' => 'adminhtml/notification_grid_renderer_actions',
));
return parent::_prepareColumns();
}
/**
* Prepare mass action
*/
protected function _prepareMassaction()
{
$this->setMassactionIdField('notification_id');
$this->getMassactionBlock()->setFormFieldName('notification');
$this->getMassactionBlock()->addItem('mark_as_read', array(
'label' => Mage::helper('adminnotification')->__('Mark as Read'),
'url' => $this->getUrl('*/*/massMarkAsRead', array('_current'=>true)),
));
$this->getMassactionBlock()->addItem('remove', array(
'label' => Mage::helper('adminnotification')->__('Remove'),
'url' => $this->getUrl('*/*/massRemove'),
'confirm' => Mage::helper('adminnotification')->__('Are you sure?')
));
// $this->getColumn('massaction')->setWidth('30px');
return $this;
}
public function getRowClass(Varien_Object $row) {
return $row->getIsRead() ? 'read' : 'unread';
}
public function getRowClickCallback()
{
return false;
}
}