Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
/**
4
 * Subclass for representing a row from the 'product_i18n' table.
5
 *
6
 *
7
 *
8
 * @package    lib.model
9
 * @subpackage model
10
 */
11
class ProductI18n extends BaseProductI18n
12
{
13
	/**
14
	 * Initializes internal state of ProductI18n object.
15
	 * @see        parent::__construct()
16
	 */
17
	public function __construct()
18
	{
19
		// Make sure that parent constructor is always invoked, since that
20
		// is where any default values for this object are set.
21
		parent::__construct();
22
	}
23
 
24
}