summaryrefslogblamecommitdiffstats
path: root/application/models/RightRoles.php
blob: e9b75c7b30d345ae2e1286ae61862114103a57ac (plain) (tree)
1
2
3
4
5
6
7
8



                                  


                            
                                                          




































                                                                            
                                   


                                      
                                           

                                          
                             
         
                                    


                                       
                                             

                                            
                             
         

 
<?php

class Application_Model_RightRoles
{
	protected $_roleID;
	protected $_rightID;

	public function __construct(array $options = null)
	{
		if (is_array($options)) {
			$this->setOptions($options);
		}
	}

	public function __set($name, $value)
	{
		$method = 'set' . $name;
		if (('mapper' == $name) || !method_exists($this, $method)) {
			throw new Exception('Invalid rightroles property');
		}
		$this->$method($value);
	}

	public function __get($name)
	{
		$method = 'get' . $name;
		if (('mapper' == $name) || !method_exists($this, $method)) {
			throw new Exception('Invalid rightroles property');
		}
		return $this->$method();
	}

	public function setOptions(array $options)
	{
		$methods = get_class_methods($this);
		foreach ($options as $key => $value) {
			$method = 'set' . ucfirst($key);
			if (in_array($method, $methods)) {
				$this->$method($value);
			}
		}
		return $this;
	}


	public function getRoleID()
	{
		return $this->_roleID;
	}
	public function setRoleID($_roleID)
	{
		$this->_roleID = $_roleID;
		return $this;
	}
	public function getRightID()
	{
		return $this->_rightID;
	}
	public function setRightID($_rightID)
	{
		$this->_rightID = $_rightID;
		return $this;
	}
}