for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
* @copyright Aimeos (aimeos.org), 2015-2024
* @package MShop
* @subpackage Customer
*/
namespace Aimeos\MShop\Customer\Manager\Address;
* Laravel implementation of the customer address class.
*
class Laravel
extends \Aimeos\MShop\Customer\Manager\Address\Standard
{
* Returns the attributes that can be used for searching.
* @param bool $withsub Return also attributes of sub-managers if true
* @return \Aimeos\Base\Criteria\Attribute\Iface[] List of search attribute items
public function getSearchAttributes( bool $withsub = true ) : array
return array_replace( parent::getSearchAttributes( $withsub ), $this->createAttributes( [
'customer.address.id' => [
'label' => 'Customer address ID',
'internalcode' => 'id',
'internaldeps' => ['LEFT JOIN "users_address" AS mcusad ON ( mcus."id" = mcusad."parentid" )'],
'type' => 'int',
'public' => false,
]
] ) );
}
* Returns the config path for retrieving the configuration values.
* @return string Configuration path
protected function getConfigPath() : string
return 'mshop/customer/manager/address/laravel/';
* Returns the name of the used table
* @return string Table name
protected function getTable() : string
return 'users_address';