Grid.php 5.51 KB
<?php
/**
 * @package  anc_album
 * @category magento
 * @mailto	code [at] netz.coop
 * @author	netz.coop eG* 
 * @copyright (c) 2014, netz.coop eG
 * 
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * 
 */ 

class Anc_Image_Block_Adminhtml_Images_Grid extends Mage_Adminhtml_Block_Widget_Grid {

	public function __construct() {
		parent::__construct();
		$this->setId('anc_image_images_grid');
		$this->setDefaultSort('entity_id');
		$this->setDefaultDir('DESC');
		$this->setSaveParametersInSession(true);
	}

	protected function _getCollectionClass() {
		return 'anc_image/ncimage';
	}

	protected function _prepareCollection() {
		$varParam = $this->getRequest()->getParams();
		if (array_key_exists('albumid', $varParam)) {
			$array = Mage::helper('anc_lib/sql')->selectFetchAll(
					'anc_album_ncalbum', array('entity_id' => $varParam['albumid'])
			);
			echo "<h1>Bilder des Albums: " . $array[0]['name'] . " </h1>";
			$collection = Mage::getModel('anc_image/ncimage')->getCollection()->addFieldToFilter('ncalbum_id', array('eq' => $varParam['albumid']));
			;
		} else if(array_key_exists('kind', $varParam)&& $varParam['kind']=='users') {
			echo "<h1>Alle Bilder der Benutzer: </h1>";
			echo '<a href="'.$this->getUrl('image/adminhtml_image/list', array('kind' => 'admin',)).'" >Bilder Admin</a>';
			$collection = Mage::getModel('anc_image/ncimage')->getCollection()->addFieldToFilter('customer_id', array('gt' => 0))->addFieldToFilter('ordered', array('null' => true));;
			;
		} else  {
			echo "<h1>Alle Bilder der Administratoren: </h1>";
			echo '<a href="'.$this->getUrl('image/adminhtml_image/list', array('kind' => 'users',)).'" >Bilder der Benutzer</a>';
			$collection = Mage::getModel('anc_image/ncimage')->getCollection()->addFieldToFilter('admin_user_id', array('gt' => 0));
			;
		}

		$this->setCollection($collection);
		return parent::_prepareCollection();
	}

	protected function _prepareColumns() {

		$this->addColumn('entity_id', array(
			'header' => Mage::helper('anc_image/data')->__('Id'),
			'align' => 'right',
			'width' => '50px',
			'index' => 'entity_id',
		));
		$this->addColumn('name', array(
			'header' => Mage::helper('anc_image/data')->__('Name'),
			'align' => 'left',
			'index' => 'name',
		));
		$this->addColumn('comment', array(
			'header' => Mage::helper('anc_image/data')->__('Comment'),
			'align' => 'left',
			'index' => 'comment',
		));
		$this->addColumn('admin_user_id', array(
			'header' => Mage::helper('anc_image/data')->__('Admin'),
			'align' => 'left',
			'index' => 'admin_user_id',
		));
		$this->addColumn('customer_id', array(
			'header' => Mage::helper('anc_image/data')->__('Customer'),
			'align' => 'left',
			'index' => 'customer_id',
		));
		$this->addColumn('path', array(
			'header' => Mage::helper('anc_image/data')->__('Pfad'),
			'align' => 'left',
			'index' => 'path',
		));
		$this->addColumn('file', array(
			'header' => Mage::helper('anc_image/data')->__('Datei'),
			'align' => 'left',
			'index' => 'file',
		));
		$this->addColumn('ncalbum_id', array(
			'header' => Mage::helper('anc_image/data')->__('Album Id'),
			'align' => 'left',
			'index' => 'ncalbum_id',
		));
		$this->addColumn('ncright_id', array(
			'header' => Mage::helper('anc_image/data')->__('Rechte Id'),
			'align' => 'left',
			'index' => 'ncright_id',
		));
		$this->addColumn('original_id', array(
			'header' => Mage::helper('anc_image/data')->__('Eltern Id'),
			'align' => 'left',
			'index' => 'original_id',
		));
		$this->addColumn('created_at', array(
			'header' => Mage::helper('anc_image/data')->__('Created'),
			'align' => 'left',
			'index' => 'created_at',
		));
		$this->addColumn('updated_at', array(
			'header' => Mage::helper('anc_image/data')->__('Updated'),
			'align' => 'left',
			'index' => 'updated_at',
		));
		$this->addColumn('issignature', array(
			'header' => Mage::helper('anc_image/data')->__('Unterschrift'),
			'align' => 'left',
			'index' => 'issignature',
		));
		$this->addColumn('font', array(
			'header' => Mage::helper('anc_image/data')->__('Schriftname'),
			'align' => 'left',
			'index' => 'font',
		));




		return parent::_prepareColumns();
	}

	public function getRowUrl($row) {
		$varParam = $this->getRequest()->getParams();
		
		if (array_key_exists('albumid', $varParam)) {
//			$var_album= '/albumid/'.$varParam['albumid'];
			return $this->getUrl('*/*/edit', array('id' => $row->getId(),'albumid'=>$varParam['albumid']));
		}else{
			return $this->getUrl('*/*/edit', array('id' => $row->getId()));
		}
		
		
		
		
	}

	
		public function getMainButtonsHtml()
	{
		$html = parent::getMainButtonsHtml();//get the parent class buttons
		$addButton = $this->getLayout()->createBlock('adminhtml/widget_button') //create the add button
			->setData(array(
				'label'     => Mage::helper('adminhtml')->__('Kunden Bild erstellen'),
				'onclick'   => "setLocation('".$this->getUrl('*/*/new',array('kind'=>'users'))."')",
				'class'   => 'task'
			))->toHtml();
		return $addButton.$html;
	}
	
	
}