1 | <?php |
||
20 | class Typo3 extends Standard implements Iface |
||
21 | { |
||
22 | private $values; |
||
|
|||
23 | |||
24 | |||
25 | /** |
||
26 | * Initializes the customer item object |
||
27 | * |
||
28 | * @param \Aimeos\MShop\Common\Item\Address\Iface $address Payment address item object |
||
29 | * @param array $values List of attributes that belong to the customer item |
||
30 | * @param \Aimeos\MShop\Common\Lists\Item\Iface[] $listItems List of list items |
||
31 | * @param \Aimeos\MShop\Common\Item\Iface[] $refItems List of referenced items |
||
32 | * @param string $salt Password salt (optional) |
||
33 | * @param \Aimeos\MShop\Common\Item\Helper\Password\Iface|null $helper Password encryption helper object |
||
34 | */ |
||
35 | public function __construct( \Aimeos\MShop\Common\Item\Address\Iface $address, array $values = array(), |
||
43 | |||
44 | |||
45 | /** |
||
46 | * Returns the TYPO3 page ID of the user |
||
47 | * |
||
48 | * @return integer Page ID of the user |
||
49 | */ |
||
50 | public function getPageId() |
||
58 | |||
59 | |||
60 | /** |
||
61 | * Sets the TYPO3 page ID for the user |
||
62 | * |
||
63 | * @param integer $value Page ID of the user |
||
64 | * @return \Aimeos\MShop\Customer\Item\Iface Customer item for chaining method calls |
||
65 | */ |
||
66 | public function setPageId( $value ) |
||
75 | |||
76 | |||
77 | /** |
||
78 | * Sets the item values from the given array. |
||
79 | * |
||
80 | * @param array $list Associative list of item keys and their values |
||
81 | * @return array Associative list of keys and their values that are unknown |
||
82 | */ |
||
83 | public function fromArray( array $list ) |
||
99 | |||
100 | |||
101 | /** |
||
102 | * Returns the item values as array. |
||
103 | * |
||
104 | * @return array Associative list of item properties and their values |
||
105 | */ |
||
106 | public function toArray() |
||
113 | } |
||
114 |