<?php

/**
 * Description of Subscriber
 *
 * @author Janusz
 */
class Newsletter_Jqgrid_Subscriber extends Rtn_JqGrid {

	public $canReorder = false;
	public $name = 'users';
	public $caption = '';
	public $sortname = 'id';
	public $height = 'auto';
	public $loadonce = false;
	public $scroll = false;
	public $rownum = 20;
	public $beanName = 'nluser';
	public $actions = [
	    'add' => null,
	    'remove' => null,
	    'edit' => null,
	    'refresh' => null,
	    'active' => null,
	    'export' => null,
	];

	protected function _renderColmodel() {
		return [
		    [
			'name' => 'email',
			'label' => __('Email')
		    ]
		];
	}

}
