/**
  * Constructor
  *
  * @param  CBdatabase  $db
  */
 public function __construct(&$db)
 {
     parent::__construct('#__cbsubs_payment_items', 'id', $db);
 }
示例#2
0
	/**
	 * Set the value of the attribute of this timed item
	 *
	 * @param  string  $column  Name of attribute
	 * @param  mixed   $value   Nalue to assign to attribute
	 */
	public function set( $column, $value ) {
//		if ( ! property_exists( $this, $column ) ) {
//			trigger_error( 'cbpaidProduct::set ("' . htmlspecialchars( $column ) . '") innexistant attribute.', E_USER_ERROR );
//		}
		parent::set( $column, $value );
	}