1 | <?php |
||
20 | class Ezpublish extends Standard implements Iface |
||
21 | { |
||
22 | private $password = ''; |
||
23 | private $helper; |
||
24 | |||
25 | |||
26 | /** |
||
27 | * Initializes the customer item object |
||
28 | * |
||
29 | * @param \Aimeos\MShop\Common\Item\Address\Iface $address Payment address item object |
||
30 | * @param array $values List of attributes that belong to the customer item |
||
31 | * @param \Aimeos\MShop\Common\Lists\Item\Iface[] $listItems List of list items |
||
32 | * @param \Aimeos\MShop\Common\Item\Iface[] $refItems List of referenced items |
||
33 | * @param string $salt Password salt (optional) |
||
34 | * @param \Aimeos\MShop\Common\Item\Helper\Password\Iface|null $helper Password encryption helper object |
||
35 | */ |
||
36 | public function __construct( \Aimeos\MShop\Common\Item\Address\Iface $address, array $values = array(), |
||
48 | |||
49 | |||
50 | /** |
||
51 | * Returns the password of the customer item |
||
52 | * |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getPassword() |
||
59 | |||
60 | |||
61 | /** |
||
62 | * Sets the password of the customer item |
||
63 | * |
||
64 | * @param string $value password of the customer item |
||
65 | * @return \Aimeos\MShop\Customer\Item\Iface Customer item for chaining method calls |
||
66 | */ |
||
67 | public function setPassword( $value ) |
||
80 | } |
||
81 |