| Total Complexity | 59 |
| Total Lines | 930 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
Complex classes like Standard often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Standard, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 21 | class Standard |
||
| 22 | extends \Aimeos\MShop\Locale\Manager\Base |
||
| 23 | implements \Aimeos\MShop\Locale\Manager\Iface, \Aimeos\MShop\Common\Manager\Factory\Iface |
||
| 24 | { |
||
| 25 | /** mshop/locale/manager/name |
||
| 26 | * Class name of the used locale manager implementation |
||
| 27 | * |
||
| 28 | * Each default manager can be replace by an alternative imlementation. |
||
| 29 | * To use this implementation, you have to set the last part of the class |
||
| 30 | * name as configuration value so the manager factory knows which class it |
||
| 31 | * has to instantiate. |
||
| 32 | * |
||
| 33 | * For example, if the name of the default class is |
||
| 34 | * |
||
| 35 | * \Aimeos\MShop\Locale\Manager\Standard |
||
| 36 | * |
||
| 37 | * and you want to replace it with your own version named |
||
| 38 | * |
||
| 39 | * \Aimeos\MShop\Locale\Manager\Mymanager |
||
| 40 | * |
||
| 41 | * then you have to set the this configuration option: |
||
| 42 | * |
||
| 43 | * mshop/locale/manager/name = Mymanager |
||
| 44 | * |
||
| 45 | * The value is the last part of your own class name and it's case sensitive, |
||
| 46 | * so take care that the configuration value is exactly named like the last |
||
| 47 | * part of the class name. |
||
| 48 | * |
||
| 49 | * The allowed characters of the class name are A-Z, a-z and 0-9. No other |
||
| 50 | * characters are possible! You should always start the last part of the class |
||
| 51 | * name with an upper case character and continue only with lower case characters |
||
| 52 | * or numbers. Avoid chamel case names like "MyManager"! |
||
| 53 | * |
||
| 54 | * @param string Last part of the class name |
||
| 55 | * @since 2014.03 |
||
| 56 | * @category Developer |
||
| 57 | */ |
||
| 58 | |||
| 59 | /** mshop/locale/manager/decorators/excludes |
||
| 60 | * Excludes decorators added by the "common" option from the locale manager |
||
| 61 | * |
||
| 62 | * Decorators extend the functionality of a class by adding new aspects |
||
| 63 | * (e.g. log what is currently done), executing the methods of the underlying |
||
| 64 | * class only in certain conditions (e.g. only for logged in users) or |
||
| 65 | * modify what is returned to the caller. |
||
| 66 | * |
||
| 67 | * This option allows you to remove a decorator added via |
||
| 68 | * "mshop/common/manager/decorators/default" before they are wrapped |
||
| 69 | * around the locale manager. |
||
| 70 | * |
||
| 71 | * mshop/locale/manager/decorators/excludes = array( 'decorator1' ) |
||
| 72 | * |
||
| 73 | * This would remove the decorator named "decorator1" from the list of |
||
| 74 | * common decorators ("\Aimeos\MShop\Common\Manager\Decorator\*") added via |
||
| 75 | * "mshop/common/manager/decorators/default" for the locale manager. |
||
| 76 | * |
||
| 77 | * @param array List of decorator names |
||
| 78 | * @since 2014.03 |
||
| 79 | * @category Developer |
||
| 80 | * @see mshop/common/manager/decorators/default |
||
| 81 | * @see mshop/locale/manager/decorators/global |
||
| 82 | * @see mshop/locale/manager/decorators/local |
||
| 83 | */ |
||
| 84 | |||
| 85 | /** mshop/locale/manager/decorators/global |
||
| 86 | * Adds a list of globally available decorators only to the locale manager |
||
| 87 | * |
||
| 88 | * Decorators extend the functionality of a class by adding new aspects |
||
| 89 | * (e.g. log what is currently done), executing the methods of the underlying |
||
| 90 | * class only in certain conditions (e.g. only for logged in users) or |
||
| 91 | * modify what is returned to the caller. |
||
| 92 | * |
||
| 93 | * This option allows you to wrap global decorators |
||
| 94 | * ("\Aimeos\MShop\Common\Manager\Decorator\*") around the locale manager. |
||
| 95 | * |
||
| 96 | * mshop/locale/manager/decorators/global = array( 'decorator1' ) |
||
| 97 | * |
||
| 98 | * This would add the decorator named "decorator1" defined by |
||
| 99 | * "\Aimeos\MShop\Common\Manager\Decorator\Decorator1" only to the locale |
||
| 100 | * manager. |
||
| 101 | * |
||
| 102 | * @param array List of decorator names |
||
| 103 | * @since 2014.03 |
||
| 104 | * @category Developer |
||
| 105 | * @see mshop/common/manager/decorators/default |
||
| 106 | * @see mshop/locale/manager/decorators/excludes |
||
| 107 | * @see mshop/locale/manager/decorators/local |
||
| 108 | */ |
||
| 109 | |||
| 110 | /** mshop/locale/manager/decorators/local |
||
| 111 | * Adds a list of local decorators only to the locale manager |
||
| 112 | * |
||
| 113 | * Decorators extend the functionality of a class by adding new aspects |
||
| 114 | * (e.g. log what is currently done), executing the methods of the underlying |
||
| 115 | * class only in certain conditions (e.g. only for logged in users) or |
||
| 116 | * modify what is returned to the caller. |
||
| 117 | * |
||
| 118 | * This option allows you to wrap local decorators |
||
| 119 | * ("\Aimeos\MShop\Locale\Manager\Decorator\*") around the locale manager. |
||
| 120 | * |
||
| 121 | * mshop/locale/manager/decorators/local = array( 'decorator2' ) |
||
| 122 | * |
||
| 123 | * This would add the decorator named "decorator2" defined by |
||
| 124 | * "\Aimeos\MShop\Locale\Manager\Decorator\Decorator2" only to the locale |
||
| 125 | * manager. |
||
| 126 | * |
||
| 127 | * @param array List of decorator names |
||
| 128 | * @since 2014.03 |
||
| 129 | * @category Developer |
||
| 130 | * @see mshop/common/manager/decorators/default |
||
| 131 | * @see mshop/locale/manager/decorators/excludes |
||
| 132 | * @see mshop/locale/manager/decorators/global |
||
| 133 | */ |
||
| 134 | |||
| 135 | |||
| 136 | private array $searchConfig = array( |
||
| 137 | 'locale.id' => array( |
||
| 138 | 'code' => 'locale.id', |
||
| 139 | 'internalcode' => 'mloc."id"', |
||
| 140 | 'label' => 'ID', |
||
| 141 | 'type' => 'int', |
||
| 142 | 'public' => false, |
||
| 143 | ), |
||
| 144 | 'locale.siteid' => array( |
||
| 145 | 'code' => 'locale.siteid', |
||
| 146 | 'internalcode' => 'mloc."siteid"', |
||
| 147 | 'label' => 'Site ID', |
||
| 148 | 'public' => false, |
||
| 149 | ), |
||
| 150 | 'locale.languageid' => array( |
||
| 151 | 'code' => 'locale.languageid', |
||
| 152 | 'internalcode' => 'mloc."langid"', |
||
| 153 | 'label' => 'Language ID', |
||
| 154 | ), |
||
| 155 | 'locale.currencyid' => array( |
||
| 156 | 'code' => 'locale.currencyid', |
||
| 157 | 'internalcode' => 'mloc."currencyid"', |
||
| 158 | 'label' => 'Currency ID', |
||
| 159 | ), |
||
| 160 | 'locale.status' => array( |
||
| 161 | 'code' => 'locale.status', |
||
| 162 | 'internalcode' => 'mloc."status"', |
||
| 163 | 'label' => 'Status', |
||
| 164 | 'type' => 'int', |
||
| 165 | ), |
||
| 166 | 'locale.position' => array( |
||
| 167 | 'code' => 'locale.position', |
||
| 168 | 'internalcode' => 'mloc."pos"', |
||
| 169 | 'label' => 'Position', |
||
| 170 | 'type' => 'int', |
||
| 171 | ), |
||
| 172 | 'locale.ctime' => array( |
||
| 173 | 'code' => 'locale.ctime', |
||
| 174 | 'internalcode' => 'mloc."ctime"', |
||
| 175 | 'label' => 'Create date/time', |
||
| 176 | 'type' => 'datetime', |
||
| 177 | 'public' => false, |
||
| 178 | ), |
||
| 179 | 'locale.mtime' => array( |
||
| 180 | 'code' => 'locale.mtime', |
||
| 181 | 'internalcode' => 'mloc."mtime"', |
||
| 182 | 'label' => 'Modify date/time', |
||
| 183 | 'type' => 'datetime', |
||
| 184 | 'public' => false, |
||
| 185 | ), |
||
| 186 | 'locale.editor' => array( |
||
| 187 | 'code' => 'locale.editor', |
||
| 188 | 'internalcode' => 'mloc."editor"', |
||
| 189 | 'label' => 'Editor', |
||
| 190 | 'public' => false, |
||
| 191 | ), |
||
| 192 | ); |
||
| 193 | |||
| 194 | |||
| 195 | /** |
||
| 196 | * Initializes the object. |
||
| 197 | * |
||
| 198 | * @param \Aimeos\MShop\ContextIface $context Context object |
||
| 199 | */ |
||
| 200 | public function __construct( \Aimeos\MShop\ContextIface $context ) |
||
| 201 | { |
||
| 202 | parent::__construct( $context ); |
||
| 203 | |||
| 204 | /** mshop/locale/manager/resource |
||
| 205 | * Name of the database connection resource to use |
||
| 206 | * |
||
| 207 | * You can configure a different database connection for each data domain |
||
| 208 | * and if no such connection name exists, the "db" connection will be used. |
||
| 209 | * It's also possible to use the same database connection for different |
||
| 210 | * data domains by configuring the same connection name using this setting. |
||
| 211 | * |
||
| 212 | * @param string Database connection name |
||
| 213 | * @since 2023.04 |
||
| 214 | */ |
||
| 215 | $this->setResourceName( $context->config()->get( 'mshop/locale/manager/resource', 'db-locale' ) ); |
||
| 216 | } |
||
| 217 | |||
| 218 | |||
| 219 | /** |
||
| 220 | * Returns the locale item for the given site code, language code and currency code. |
||
| 221 | * |
||
| 222 | * @param string $site Site code |
||
| 223 | * @param string $lang Language code (optional) |
||
| 224 | * @param string $currency Currency code (optional) |
||
| 225 | * @param bool $active Flag to get only active items (optional) |
||
| 226 | * @param int|null $level Constant from abstract class which site ID levels should be available (optional), |
||
| 227 | * based on config or value for SITE_PATH if null |
||
| 228 | * @param bool $bare Allow locale items with sites only |
||
| 229 | * @return \Aimeos\MShop\Locale\Item\Iface Locale item for the given parameters |
||
| 230 | * @throws \Aimeos\MShop\Locale\Exception If no locale item is found |
||
| 231 | */ |
||
| 232 | public function bootstrap( string $site, string $lang = '', string $currency = '', bool $active = true, int $level = null, |
||
| 233 | bool $bare = false ) : \Aimeos\MShop\Locale\Item\Iface |
||
| 234 | { |
||
| 235 | $siteItem = $this->object()->getSubManager( 'site' )->find( $site ); |
||
| 236 | |||
| 237 | // allow enabled sites and sites under review |
||
| 238 | if( $active && $siteItem->getStatus() < 1 && $siteItem->getStatus() !== -1 ) { |
||
| 239 | throw new \Aimeos\MShop\Locale\Exception( 'Site not found' ); |
||
| 240 | } |
||
| 241 | |||
| 242 | $siteId = $siteItem->getSiteId(); |
||
| 243 | $sites = [Base::SITE_ONE => $siteId]; |
||
| 244 | |||
| 245 | return $this->bootstrapBase( $site, $lang, $currency, $active, $siteItem, $siteId, $sites, $bare ); |
||
| 246 | } |
||
| 247 | |||
| 248 | |||
| 249 | /** |
||
| 250 | * Removes old entries from the storage. |
||
| 251 | * |
||
| 252 | * @param iterable $siteids List of IDs for sites whose entries should be deleted |
||
| 253 | * @return \Aimeos\MShop\Locale\Manager\Iface Manager object for chaining method calls |
||
| 254 | */ |
||
| 255 | public function clear( iterable $siteids ) : \Aimeos\MShop\Common\Manager\Iface |
||
| 256 | { |
||
| 257 | return $this->clearBase( $siteids, 'mshop/locale/manager/delete' ); |
||
| 258 | } |
||
| 259 | |||
| 260 | |||
| 261 | /** |
||
| 262 | * Creates a new empty item instance |
||
| 263 | * |
||
| 264 | * @param array $values Values the item should be initialized with |
||
| 265 | * @return \Aimeos\MShop\Locale\Item\Iface New locale item object |
||
| 266 | */ |
||
| 267 | public function create( array $values = [] ) : \Aimeos\MShop\Common\Item\Iface |
||
| 268 | { |
||
| 269 | try { |
||
| 270 | $values['locale.siteid'] = $values['locale.siteid'] ?? $this->context()->locale()->getSiteId(); |
||
| 271 | } catch( \Exception $e ) {} // if no locale item is available |
||
| 272 | |||
| 273 | return $this->createItemBase( $values ); |
||
| 274 | } |
||
| 275 | |||
| 276 | |||
| 277 | /** |
||
| 278 | * Creates a filter object. |
||
| 279 | * |
||
| 280 | * @param bool|null $default Add default criteria or NULL for relaxed default criteria |
||
| 281 | * @param bool $site TRUE for adding site criteria to limit items by the site of related items |
||
| 282 | * @return \Aimeos\Base\Criteria\Iface Returns the filter object |
||
| 283 | */ |
||
| 284 | public function filter( ?bool $default = false, bool $site = false ) : \Aimeos\Base\Criteria\Iface |
||
| 285 | { |
||
| 286 | return $this->filterBase( 'locale', $default ); |
||
| 287 | } |
||
| 288 | |||
| 289 | |||
| 290 | /** |
||
| 291 | * Returns the item specified by its ID. |
||
| 292 | * |
||
| 293 | * @param string $id Unique ID of the locale item |
||
| 294 | * @param string[] $ref List of domains to fetch list items and referenced items for |
||
| 295 | * @param bool|null $default Add default criteria or NULL for relaxed default criteria |
||
| 296 | * @return \Aimeos\MShop\Locale\Item\Iface Returns the locale item of the given id |
||
| 297 | * @throws \Aimeos\MShop\Exception If item couldn't be found |
||
| 298 | */ |
||
| 299 | public function get( string $id, array $ref = [], ?bool $default = false ) : \Aimeos\MShop\Common\Item\Iface |
||
| 300 | { |
||
| 301 | return $this->getItemBase( 'locale.id', $id, $ref, $default ); |
||
| 302 | } |
||
| 303 | |||
| 304 | |||
| 305 | /** |
||
| 306 | * Searches for all items matching the given critera. |
||
| 307 | * |
||
| 308 | * @param \Aimeos\Base\Criteria\Iface $search Criteria object with conditions, sortations, etc. |
||
| 309 | * @param string[] $ref List of domains to fetch list items and referenced items for |
||
| 310 | * @param int &$total Number of items that are available in total |
||
| 311 | * @return \Aimeos\Map List of items implementing \Aimeos\MShop\Locale\Item\Iface with ids as keys |
||
| 312 | */ |
||
| 313 | public function search( \Aimeos\Base\Criteria\Iface $search, array $ref = [], int &$total = null ) : \Aimeos\Map |
||
| 314 | { |
||
| 315 | $items = []; |
||
| 316 | // $level = \Aimeos\MShop\Locale\Manager\Base::SITE_PATH; |
||
| 317 | // $search = (clone $search)->add( $this->siteCondition( 'locale.siteid', $level ) ); |
||
| 318 | |||
| 319 | foreach( $this->searchEntries( $search, $ref, $total ) as $row ) |
||
| 320 | { |
||
| 321 | if( $item = $this->applyFilter( $this->createItemBase( $row ) ) ) { |
||
| 322 | $items[$row['locale.id']] = $item; |
||
| 323 | } |
||
| 324 | } |
||
| 325 | |||
| 326 | return map( $items ); |
||
| 327 | } |
||
| 328 | |||
| 329 | |||
| 330 | /** |
||
| 331 | * Removes multiple items. |
||
| 332 | * |
||
| 333 | * @param \Aimeos\MShop\Common\Item\Iface[]|string[] $itemIds List of item objects or IDs of the items |
||
| 334 | * @return \Aimeos\MShop\Locale\Manager\Iface Manager object for chaining method calls |
||
| 335 | */ |
||
| 336 | public function delete( $itemIds ) : \Aimeos\MShop\Common\Manager\Iface |
||
| 337 | { |
||
| 338 | /** mshop/locale/manager/delete/mysql |
||
| 339 | * Deletes the items matched by the given IDs from the database |
||
| 340 | * |
||
| 341 | * @see mshop/locale/manager/delete/ansi |
||
| 342 | */ |
||
| 343 | |||
| 344 | /** mshop/locale/manager/delete/ansi |
||
| 345 | * Deletes the items matched by the given IDs from the database |
||
| 346 | * |
||
| 347 | * Removes the records specified by the given IDs from the locale database. |
||
| 348 | * The records must be from the site that is configured via the |
||
| 349 | * context item. |
||
| 350 | * |
||
| 351 | * The ":cond" placeholder is replaced by the name of the ID column and |
||
| 352 | * the given ID or list of IDs while the site ID is bound to the question |
||
| 353 | * mark. |
||
| 354 | * |
||
| 355 | * The SQL statement should conform to the ANSI standard to be |
||
| 356 | * compatible with most relational database systems. This also |
||
| 357 | * includes using double quotes for table and column names. |
||
| 358 | * |
||
| 359 | * @param string SQL statement for deleting items |
||
| 360 | * @since 2014.03 |
||
| 361 | * @category Developer |
||
| 362 | * @see mshop/locale/manager/insert/ansi |
||
| 363 | * @see mshop/locale/manager/update/ansi |
||
| 364 | * @see mshop/locale/manager/newid/ansi |
||
| 365 | * @see mshop/locale/manager/search/ansi |
||
| 366 | * @see mshop/locale/manager/count/ansi |
||
| 367 | */ |
||
| 368 | $path = 'mshop/locale/manager/delete'; |
||
| 369 | |||
| 370 | return $this->deleteItemsBase( $itemIds, $path ); |
||
| 371 | } |
||
| 372 | |||
| 373 | |||
| 374 | /** |
||
| 375 | * Adds or updates an item object. |
||
| 376 | * |
||
| 377 | * @param \Aimeos\MShop\Locale\Item\Iface $item Item object whose data should be saved |
||
| 378 | * @param bool $fetch True if the new ID should be returned in the item |
||
| 379 | * @return \Aimeos\MShop\Locale\Item\Iface $item Updated item including the generated ID |
||
| 380 | */ |
||
| 381 | protected function saveItem( \Aimeos\MShop\Locale\Item\Iface $item, bool $fetch = true ) : \Aimeos\MShop\Locale\Item\Iface |
||
| 382 | { |
||
| 383 | if( !$item->isModified() ) { |
||
| 384 | return $item; |
||
| 385 | } |
||
| 386 | |||
| 387 | $context = $this->context(); |
||
| 388 | $conn = $context->db( $this->getResourceName() ); |
||
| 389 | |||
| 390 | $id = $item->getId(); |
||
| 391 | $date = date( 'Y-m-d H:i:s' ); |
||
| 392 | $columns = $this->object()->getSaveAttributes(); |
||
| 393 | |||
| 394 | if( $id === null ) |
||
| 395 | { |
||
| 396 | /** mshop/locale/manager/insert/mysql |
||
| 397 | * Inserts a new locale record into the database table |
||
| 398 | * |
||
| 399 | * @see mshop/locale/manager/insert/ansi |
||
| 400 | */ |
||
| 401 | |||
| 402 | /** mshop/locale/manager/insert/ansi |
||
| 403 | * Inserts a new locale record into the database table |
||
| 404 | * |
||
| 405 | * Items with no ID yet (i.e. the ID is NULL) will be created in |
||
| 406 | * the database and the newly created ID retrieved afterwards |
||
| 407 | * using the "newid" SQL statement. |
||
| 408 | * |
||
| 409 | * The SQL statement must be a string suitable for being used as |
||
| 410 | * prepared statement. It must include question marks for binding |
||
| 411 | * the values from the locale item to the statement before they are |
||
| 412 | * sent to the database server. The number of question marks must |
||
| 413 | * be the same as the number of columns listed in the INSERT |
||
| 414 | * statement. The order of the columns must correspond to the |
||
| 415 | * order in the save() method, so the correct values are |
||
| 416 | * bound to the columns. |
||
| 417 | * |
||
| 418 | * The SQL statement should conform to the ANSI standard to be |
||
| 419 | * compatible with most relational database systems. This also |
||
| 420 | * includes using double quotes for table and column names. |
||
| 421 | * |
||
| 422 | * @param string SQL statement for inserting records |
||
| 423 | * @since 2014.03 |
||
| 424 | * @category Developer |
||
| 425 | * @see mshop/locale/manager/update/ansi |
||
| 426 | * @see mshop/locale/manager/newid/ansi |
||
| 427 | * @see mshop/locale/manager/delete/ansi |
||
| 428 | * @see mshop/locale/manager/search/ansi |
||
| 429 | * @see mshop/locale/manager/count/ansi |
||
| 430 | */ |
||
| 431 | $path = 'mshop/locale/manager/insert'; |
||
| 432 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
||
|
|
|||
| 433 | } |
||
| 434 | else |
||
| 435 | { |
||
| 436 | /** mshop/locale/manager/update/mysql |
||
| 437 | * Updates an existing locale record in the database |
||
| 438 | * |
||
| 439 | * @see mshop/locale/manager/update/ansi |
||
| 440 | */ |
||
| 441 | |||
| 442 | /** mshop/locale/manager/update/ansi |
||
| 443 | * Updates an existing locale record in the database |
||
| 444 | * |
||
| 445 | * Items which already have an ID (i.e. the ID is not NULL) will |
||
| 446 | * be updated in the database. |
||
| 447 | * |
||
| 448 | * The SQL statement must be a string suitable for being used as |
||
| 449 | * prepared statement. It must include question marks for binding |
||
| 450 | * the values from the locale item to the statement before they are |
||
| 451 | * sent to the database server. The order of the columns must |
||
| 452 | * correspond to the order in the save() method, so the |
||
| 453 | * correct values are bound to the columns. |
||
| 454 | * |
||
| 455 | * The SQL statement should conform to the ANSI standard to be |
||
| 456 | * compatible with most relational database systems. This also |
||
| 457 | * includes using double quotes for table and column names. |
||
| 458 | * |
||
| 459 | * @param string SQL statement for updating records |
||
| 460 | * @since 2014.03 |
||
| 461 | * @category Developer |
||
| 462 | * @see mshop/locale/manager/insert/ansi |
||
| 463 | * @see mshop/locale/manager/newid/ansi |
||
| 464 | * @see mshop/locale/manager/delete/ansi |
||
| 465 | * @see mshop/locale/manager/search/ansi |
||
| 466 | * @see mshop/locale/manager/count/ansi |
||
| 467 | */ |
||
| 468 | $path = 'mshop/locale/manager/update'; |
||
| 469 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ), false ); |
||
| 470 | } |
||
| 471 | |||
| 472 | $idx = 1; |
||
| 473 | $stmt = $this->getCachedStatement( $conn, $path, $sql ); |
||
| 474 | $siteIds = explode( '.', trim( $item->getSiteId(), '.' ) ); |
||
| 475 | |||
| 476 | foreach( $columns as $name => $entry ) { |
||
| 477 | $stmt->bind( $idx++, $item->get( $name ), \Aimeos\Base\Criteria\SQL::type( $entry->getType() ) ); |
||
| 478 | } |
||
| 479 | |||
| 480 | $stmt->bind( $idx++, $item->getLanguageId() ); |
||
| 481 | $stmt->bind( $idx++, $item->getCurrencyId() ); |
||
| 482 | $stmt->bind( $idx++, $item->getPosition(), \Aimeos\Base\DB\Statement\Base::PARAM_INT ); |
||
| 483 | $stmt->bind( $idx++, $item->getStatus(), \Aimeos\Base\DB\Statement\Base::PARAM_INT ); |
||
| 484 | $stmt->bind( $idx++, $date ); // mtime |
||
| 485 | $stmt->bind( $idx++, $context->editor() ); |
||
| 486 | $stmt->bind( $idx++, end( $siteIds ), \Aimeos\Base\DB\Statement\Base::PARAM_INT ); |
||
| 487 | $stmt->bind( $idx++, $item->getSiteId() ); |
||
| 488 | |||
| 489 | if( $id !== null ) { |
||
| 490 | $stmt->bind( $idx++, $id, \Aimeos\Base\DB\Statement\Base::PARAM_INT ); |
||
| 491 | } else { |
||
| 492 | $stmt->bind( $idx++, $date ); // ctime |
||
| 493 | } |
||
| 494 | |||
| 495 | $stmt->execute()->finish(); |
||
| 496 | |||
| 497 | if( $id === null && $fetch === true ) |
||
| 498 | { |
||
| 499 | /** mshop/locale/manager/newid/mysql |
||
| 500 | * Retrieves the ID generated by the database when inserting a new record |
||
| 501 | * |
||
| 502 | * @see mshop/locale/manager/newid/ansi |
||
| 503 | */ |
||
| 504 | |||
| 505 | /** mshop/locale/manager/newid/ansi |
||
| 506 | * Retrieves the ID generated by the database when inserting a new record |
||
| 507 | * |
||
| 508 | * As soon as a new record is inserted into the database table, |
||
| 509 | * the database server generates a new and unique identifier for |
||
| 510 | * that record. This ID can be used for retrieving, updating and |
||
| 511 | * deleting that specific record from the table again. |
||
| 512 | * |
||
| 513 | * For MySQL: |
||
| 514 | * SELECT LAST_INSERT_ID() |
||
| 515 | * For PostgreSQL: |
||
| 516 | * SELECT currval('seq_mloc_id') |
||
| 517 | * For SQL Server: |
||
| 518 | * SELECT SCOPE_IDENTITY() |
||
| 519 | * For Oracle: |
||
| 520 | * SELECT "seq_mloc_id".CURRVAL FROM DUAL |
||
| 521 | * |
||
| 522 | * There's no way to retrive the new ID by a SQL statements that |
||
| 523 | * fits for most database servers as they implement their own |
||
| 524 | * specific way. |
||
| 525 | * |
||
| 526 | * @param string SQL statement for retrieving the last inserted record ID |
||
| 527 | * @since 2014.03 |
||
| 528 | * @category Developer |
||
| 529 | * @see mshop/locale/manager/insert/ansi |
||
| 530 | * @see mshop/locale/manager/update/ansi |
||
| 531 | * @see mshop/locale/manager/delete/ansi |
||
| 532 | * @see mshop/locale/manager/search/ansi |
||
| 533 | * @see mshop/locale/manager/count/ansi |
||
| 534 | */ |
||
| 535 | $path = 'mshop/locale/manager/newid'; |
||
| 536 | $id = $this->newId( $conn, $path ); |
||
| 537 | } |
||
| 538 | |||
| 539 | $item->setId( $id ); |
||
| 540 | |||
| 541 | return $item; |
||
| 542 | } |
||
| 543 | |||
| 544 | |||
| 545 | /** |
||
| 546 | * Returns a new manager for locale extensions |
||
| 547 | * |
||
| 548 | * @param string $manager Name of the sub manager type in lower case |
||
| 549 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
||
| 550 | * @return \Aimeos\MShop\Common\Manager\Iface Manager for different extensions, e.g site, language, currency. |
||
| 551 | */ |
||
| 552 | public function getSubManager( string $manager, string $name = null ) : \Aimeos\MShop\Common\Manager\Iface |
||
| 553 | { |
||
| 554 | return $this->getSubManagerBase( 'locale', $manager, $name ); |
||
| 555 | } |
||
| 556 | |||
| 557 | |||
| 558 | /** |
||
| 559 | * Returns the available manager types |
||
| 560 | * |
||
| 561 | * @param bool $withsub Return also the resource type of sub-managers if true |
||
| 562 | * @return string[] Type of the manager and submanagers, subtypes are separated by slashes |
||
| 563 | */ |
||
| 564 | public function getResourceType( bool $withsub = true ) : array |
||
| 568 | } |
||
| 569 | |||
| 570 | |||
| 571 | /** |
||
| 572 | * Returns the attributes that can be used for searching. |
||
| 573 | * |
||
| 574 | * @param bool $withsub Return also attributes of sub-managers if true |
||
| 575 | * @return \Aimeos\Base\Criteria\Attribute\Iface[] List of search attribute items |
||
| 576 | */ |
||
| 577 | public function getSearchAttributes( bool $withsub = true ) : array |
||
| 578 | { |
||
| 579 | /** mshop/locale/manager/submanagers |
||
| 580 | * List of manager names that can be instantiated by the locale manager |
||
| 581 | * |
||
| 582 | * Managers provide a generic interface to the underlying storage. |
||
| 583 | * Each manager has or can have sub-managers caring about particular |
||
| 584 | * aspects. Each of these sub-managers can be instantiated by its |
||
| 585 | * parent manager using the getSubManager() method. |
||
| 586 | * |
||
| 587 | * The search keys from sub-managers can be normally used in the |
||
| 588 | * manager as well. It allows you to search for items of the manager |
||
| 589 | * using the search keys of the sub-managers to further limit the |
||
| 590 | * retrieved list of items. |
||
| 591 | * |
||
| 592 | * @param array List of sub-manager names |
||
| 593 | * @since 2014.03 |
||
| 594 | * @category Developer |
||
| 595 | */ |
||
| 596 | $path = 'mshop/locale/manager/submanagers'; |
||
| 597 | $default = array( 'language', 'currency', 'site' ); |
||
| 598 | |||
| 599 | return $this->getSearchAttributesBase( $this->searchConfig, $path, $default, $withsub ); |
||
| 600 | } |
||
| 601 | |||
| 602 | |||
| 603 | /** |
||
| 604 | * Returns the locale item for the given site code, language code and currency code. |
||
| 605 | * |
||
| 606 | * If the locale item is inherited from a parent site, the site ID of this locale item |
||
| 607 | * is changed to the site ID of the actual site. This ensures that items assigned to |
||
| 608 | * the same site as the site item are still used. |
||
| 609 | * |
||
| 610 | * @param string $site Site code |
||
| 611 | * @param string $lang Language code |
||
| 612 | * @param string $currency Currency code |
||
| 613 | * @param bool $active Flag to get only active items |
||
| 614 | * @param \Aimeos\MShop\Locale\Item\Site\Iface $siteItem Site item |
||
| 615 | * @param string $siteId Site ID |
||
| 616 | * @param array $sites Associative list of site constant as key and sites as values |
||
| 617 | * @param bool $bare Allow locale items with sites only |
||
| 618 | * @return \Aimeos\MShop\Locale\Item\Iface Locale item for the given parameters |
||
| 619 | * @throws \Aimeos\MShop\Locale\Exception If no locale item is found |
||
| 620 | */ |
||
| 621 | protected function bootstrapBase( string $site, string $lang, string $currency, bool $active, |
||
| 622 | \Aimeos\MShop\Locale\Item\Site\Iface $siteItem, string $siteId, array $sites, bool $bare ) : \Aimeos\MShop\Locale\Item\Iface |
||
| 623 | { |
||
| 624 | if( $result = $this->bootstrapMatch( $siteId, $lang, $currency, $active, $siteItem, $sites ) ) { |
||
| 625 | return $result; |
||
| 626 | } |
||
| 627 | |||
| 628 | if( $result = $this->bootstrapClosest( $siteId, $lang, $active, $siteItem, $sites ) ) { |
||
| 629 | return $result; |
||
| 630 | } |
||
| 631 | |||
| 632 | if( $bare === true ) { |
||
| 633 | return $this->createItemBase( ['locale.siteid' => $siteId], $siteItem, $sites ); |
||
| 634 | } |
||
| 635 | |||
| 636 | $msg = $this->context()->translate( 'mshop', 'Locale item for site "%1$s" not found' ); |
||
| 637 | throw new \Aimeos\MShop\Locale\Exception( sprintf( $msg, $site ) ); |
||
| 638 | } |
||
| 639 | |||
| 640 | |||
| 641 | /** |
||
| 642 | * Returns the matching locale item for the given site code, language code and currency code. |
||
| 643 | * |
||
| 644 | * If the locale item is inherited from a parent site, the site ID of this locale item |
||
| 645 | * is changed to the site ID of the actual site. This ensures that items assigned to |
||
| 646 | * the same site as the site item are still used. |
||
| 647 | * |
||
| 648 | * @param string $siteId Site ID |
||
| 649 | * @param string $lang Language code |
||
| 650 | * @param string $currency Currency code |
||
| 651 | * @param bool $active Flag to get only active items |
||
| 652 | * @param \Aimeos\MShop\Locale\Item\Site\Iface $siteItem Site item |
||
| 653 | * @param array $sites Associative list of site constant as key and sites as values |
||
| 654 | * @return \Aimeos\MShop\Locale\Item\Iface|null Locale item for the given parameters or null if no item was found |
||
| 655 | */ |
||
| 656 | private function bootstrapMatch( string $siteId, string $lang, string $currency, bool $active, |
||
| 703 | } |
||
| 704 | |||
| 705 | |||
| 706 | /** |
||
| 707 | * Returns the locale item for the given site code, language code and currency code. |
||
| 708 | * |
||
| 709 | * If the locale item is inherited from a parent site, the site ID of this locale item |
||
| 710 | * is changed to the site ID of the actual site. This ensures that items assigned to |
||
| 711 | * the same site as the site item are still used. |
||
| 712 | * |
||
| 713 | * @param string $siteId Site ID |
||
| 714 | * @param string $lang Language code |
||
| 715 | * @param bool $active Flag to get only active items |
||
| 716 | * @param \Aimeos\MShop\Locale\Item\Site\Iface $siteItem Site item |
||
| 717 | * @param array $sites Associative list of site constant as key and sites as values |
||
| 718 | * @return \Aimeos\MShop\Locale\Item\Iface|null Locale item for the given parameters or null if no item was found |
||
| 719 | */ |
||
| 720 | private function bootstrapClosest( string $siteId, string $lang, bool $active, |
||
| 800 | } |
||
| 801 | |||
| 802 | |||
| 803 | /** |
||
| 804 | * Instances a new locale item object. |
||
| 805 | * |
||
| 806 | * @param array $values Parameter to initialise the item |
||
| 807 | * @param \Aimeos\MShop\Locale\Item\Site\Iface|null $site Site item |
||
| 808 | * @param array $sites Associative list of site constant as key and sites as values |
||
| 809 | * @return \Aimeos\MShop\Locale\Item\Iface Locale item |
||
| 810 | */ |
||
| 811 | protected function createItemBase( array $values = [], \Aimeos\MShop\Locale\Item\Site\Iface $site = null, |
||
| 815 | } |
||
| 816 | |||
| 817 | |||
| 818 | /** |
||
| 819 | * Searches for all items matching the given critera. |
||
| 820 | * |
||
| 821 | * @param \Aimeos\Base\Criteria\Iface $search Criteria object with conditions, sortations, etc. |
||
| 822 | * @param string[] $ref List of domains to fetch list items and referenced items for |
||
| 823 | * @param int &$total Number of items that are available in total |
||
| 824 | * @return array Associative list of key/value pairs |
||
| 825 | */ |
||
| 826 | protected function searchEntries( \Aimeos\Base\Criteria\Iface $search, array $ref = [], int &$total = null ) : array |
||
| 937 | } |
||
| 938 | |||
| 939 | |||
| 940 | /** |
||
| 941 | * Returns the site coditions for the search request |
||
| 942 | * |
||
| 943 | * @param string[] $keys Sorted list of criteria keys |
||
| 944 | * @param \Aimeos\Base\Criteria\Attribute\Iface[] $attributes Associative list of search keys and criteria attribute items as values |
||
| 945 | * @param int $sitelevel Site level constant from \Aimeos\MShop\Locale\Manager\Base |
||
| 946 | * @return \Aimeos\Base\Criteria\Expression\Iface[] List of search conditions |
||
| 947 | */ |
||
| 948 | protected function getSiteConditions( array $keys, array $attributes, int $sitelevel ) : array |
||
| 953 |