Monami presta

Z Waritkova wiki
Verze z 10. 3. 2018, 20:10, kterou vytvořil Waritko (diskuse | příspěvky) (Založena nová stránka s textem „/classes/Product.php around line 222 <source lang="php">** @var string Author: public $author; ** @var string Import ID: public $impor…“)
(rozdíl) ← Starší verze | zobrazit aktuální verzi (rozdíl) | Novější verze → (rozdíl)
Skočit na navigaci Skočit na vyhledávání

/classes/Product.php around line 222

/*** @var string Author */
    public $author;

    /*** @var string Import ID */
    public $import_id;

    /*** @var string Publisher */
    public $publisher;

    /*** @var int Number of pages */
    public $pages;

    /*** @var string Binding type */
    public $binding;

    /*** @var string Date published */
    public $published;

    /*** @var string Image link */
    public $image_link;

/classes/Product.php around line 338

            'author' =>                        array('type' => self::TYPE_STRING, 'shop' => true, 'validate' => 'isString'),
            'import_id' =>                        array('type' => self::TYPE_STRING, 'shop' => true, 'validate' => 'isString'),
            'publisher' =>                        array('type' => self::TYPE_STRING, 'shop' => true, 'validate' => 'isString'),
            'pages' =>                        array('type' => self::TYPE_INT, 'shop' => true, 'validate' => 'isUnsignedInt'),
            'binding' =>                        array('type' => self::TYPE_STRING, 'shop' => true, 'validate' => 'isString'),
	    'published' =>                        array('type' => self::TYPE_DATE, 'shop' => true, 'validate' => 'isDateFormat'),
	    'image_link' =>                        array('type' => self::TYPE_STRING, 'shop' => true, 'validate' => 'isString'),