CustomerBehavior ​
- Type
- Class
- Namespace
- craft\commerce\behaviors
- Inherits
- craft\commerce\behaviors\CustomerBehavior » yii\base\Behavior » yii\base\BaseObject
- Implements
- yii\base\Configurable
- Since
- 4.0
Customer behavior.
Public Properties ​
activeCarts
​
- Type
- array
- Default value
null
addresses
​
- Type
- craft\elements\Address
- Default value
null
inactiveCarts
​
- Type
- array
- Default value
null
orders
​
- Type
- craft\commerce\elements\Order[]
- Default value
null
owner
​
- Type
- craft\elements\User
- Default value
null
primaryBillingAddress
​
- Type
- null, craft\elements\Address
- Default value
null
primaryBillingAddressId
​
primaryPaymentSource
​
- Type
- null, craft\commerce\models\PaymentSource
- Default value
null
primaryPaymentSourceId
​
primaryShippingAddress
​
- Type
- null, craft\elements\Address
- Default value
null
primaryShippingAddressId
​
subscriptions
​
- Type
- craft\commerce\elements\Subscription[]
- Default value
null
Public Methods ​
Method | Description |
---|---|
__call() | Calls the named method which is not a class method. |
__construct() | Constructor. |
__get() | Returns the value of an object property. |
__isset() | Checks if a property is set, i.e. defined and not null. |
__set() | Sets value of an object property. |
__unset() | Sets an object property to null. |
afterSaveUserHandler() | |
attach() | Attaches the behavior object to the component. |
canGetProperty() | Returns a value indicating whether a property can be read. |
canSetProperty() | Returns a value indicating whether a property can be set. |
className() | Returns the fully qualified name of this class. |
defineFields() | |
defineRules() | |
detach() | Detaches the behavior object from the component. |
events() | Declares event handlers for the owner's events. |
getActiveCarts() | |
getInactiveCarts() | |
getOrders() | Returns the completed order elements associated with this user. |
getPrimaryBillingAddress() | |
getPrimaryBillingAddressId() | |
getPrimaryPaymentSource() | |
getPrimaryPaymentSourceId() | |
getPrimaryShippingAddress() | |
getPrimaryShippingAddressId() | |
getSubscriptions() | Returns the subscription elements associated with this customer. |
hasMethod() | Returns a value indicating whether a method is defined. |
hasProperty() | Returns a value indicating whether a property is defined. |
init() | Initializes the object. |
setPrimaryBillingAddressId() | |
setPrimaryPaymentSourceId() | |
setPrimaryShippingAddressId() |
afterSaveUserHandler()
​
Arguments ​
$event
(craft\events\ModelEvent)
Returns ​
void
Throws ​
attach()
​
Attaches the behavior object to the component.
The default implementation will set the owner property and attach event handlers as declared in events(). Make sure you call the parent implementation if you override this method.
Arguments ​
$owner
(yii\base\Component) – The component that this behavior is to be attached to.
defineFields()
​
- Since
- 5.0.10
Arguments ​
$event
(craft\events\DefineFieldsEvent)
Returns ​
void
defineRules()
​
Arguments ​
$event
(craft\events\DefineRulesEvent)
Throws ​
events()
​
Declares event handlers for the owner's events.
Child classes may override this method to declare what PHP callbacks should be attached to the events of the owner component.
The callbacks will be attached to the owner's events when the behavior is attached to the owner; and they will be detached from the events when the behavior is detached from the component.
The callbacks can be any of the following:
- method in this behavior:
'handleClick'
, equivalent to[$this, 'handleClick']
- object method:
[$object, 'handleClick']
- static method:
['Page', 'handleClick']
- anonymous function:
function ($event) { ... }
The following is an example:
[
Model::EVENT_BEFORE_VALIDATE => 'myBeforeValidate',
Model::EVENT_AFTER_VALIDATE => 'myAfterValidate',
]
Returns ​
array – Events (array keys) and the corresponding event handler methods (array values).
getActiveCarts()
​
Returns ​
Throws ​
getInactiveCarts()
​
Returns ​
Throws ​
getOrders()
​
Returns the completed order elements associated with this user.
Orders are returned with the most recent first.
Returns ​
craft\commerce\elements\Order[]
getPrimaryBillingAddress()
​
Returns ​
getPrimaryBillingAddressId()
​
Returns ​
getPrimaryPaymentSource()
​
- Since
- 4.2
Returns ​
craft\commerce\models\PaymentSource, null
Throws ​
getPrimaryPaymentSourceId()
​
- Since
- 4.2
Returns ​
Throws ​
getPrimaryShippingAddress()
​
Returns ​
getPrimaryShippingAddressId()
​
Returns ​
getSubscriptions()
​
Returns the subscription elements associated with this customer.
Returns ​
craft\commerce\elements\Subscription[]
setPrimaryBillingAddressId()
​
Arguments ​
setPrimaryPaymentSourceId()
​
- Since
- 4.2
Arguments ​
Returns ​
void