Content.php 3.95 KB
<?php
/**
 * @package  anc_lib 
 * @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_Lib_Block_Adminhtml_Ncrights_Edit_Tab_Content extends Mage_Adminhtml_Block_Widget_Form {

	
	protected function _prepareForm() {
//		$this->setTemplate('anc/printconfigproduct/ancpcpcalendar.phtml');
//		$this->setTemplate('anc/album/multiuploadncimage.phtml');
		if (Mage::registry('anc_lib')) {
			$data = Mage::registry('anc_lib')->getData();
		} else {
			$data = array();
		}

		$form = new Varien_Data_Form();
		$this->setForm($form);
		
		
		$fieldset = $form->addFieldset('anc_lib', array('name' => 'name')); //Mage::helper('news')->__('news information')));
		$fieldset->addField('name', 'text', array(
			'label' => Mage::helper('anc_lib/data')->__('Name'),
			'class' => 'required-entry',
			'required' => true,
			'name' => 'name',
		));
//
//
//
//		$fieldset->addField('name', 'text', array(
//			'label' => Mage::helper('anc_album/data')->__('Name'),
//			'class' => 'required-entry',
//			'required' => true,
//			'name' => 'name',
//		));
//
//		$fieldset->addField('comment', 'textarea', array(
//			'label' => Mage::helper('anc_album/data')->__('Comment'),
//			'class' => 'required-entry',
//			'required' => true,
//			'name' => 'comment',
//		));
//		$fieldset->addField('link', 'link', array(
//          'label'     => "Link",
//          'style'   => "test",
//          'href' => 'www.excellencemagentoblog.com',
//          'value'  => 'Magento Blog',
//		   'name' => 'comment',
//          'after_element_html' => ''
//        ));
//		/**
//		 * Setzen der Hidden Id für Admin muss über den $data array erfolgen da sonst Magento für neue Elemente 0 setzt
//		 */
		$data['admin_user_id'] = $admin = Mage::getSingleton('admin/session')->getUser()->getId();
		$fieldset->addField('admin_user_id', 'hidden', array('name' => 'admin_user_id'));

//
//
//
		$form->addValues($data);

		return parent::_prepareForm();
	}
	
	
	
//	protected function _prepareForm() {
//		if (Mage::registry('anc_album')) {
//			$data = Mage::registry('anc_album')->getData();
//		} else {
//			$data = array();
//		}
//		$form = new Varien_Data_Form();
//		$this->setForm($form);
//		$fieldset = $form->addFieldset('anc_album', array('name' => 'Info'));//Mage::helper('news')->__('news information')));
//		
////		    $this->_addButton('order_reorder', array(
////				'label'     => Mage::helper('sales')->__('Print Labels'),
////				'onclick'   => 'window.open(\'/printouts/' . $this->getOrder()->getRealOrderId() . '.pdf\')',
////			));
//		 $fieldset->addField('link', 'link', array(
//          'label'     => Mage::helper('form')->__('Link'),
//          'style'   => "",
//          'href' => 'www.excellencemagentoblog.com',
//          'value'  => 'Magento Blog',
//          'after_element_html' => ''
//        ));
//		$form->addButton('btn_add', array(
//			'label' => Mage::helper('adminhtml')->__('Add new record'),
//			'onclick' => 'setLocation(\'' . $this->getUrl('*/*/new') .'\')',
//			'class' => 'add',
//	 ),-1,3);
//		$data['admin_user_id'] = $admin = Mage::getSingleton('admin/session')->getUser()->getId();
//		$fieldset->addField('admin_user_id', 'hidden', array('name' => 'admin_user_id'));
//
//
//		
//		$form->setValues($data);
//		return parent::_prepareForm();
//	}

}