diff options
author | J0WI <J0WI@users.noreply.github.com> | 2020-09-17 17:23:07 +0200 |
---|---|---|
committer | J0WI <J0WI@users.noreply.github.com> | 2020-09-17 17:40:04 +0200 |
commit | 68ce17e59bf8bc09757f9b56fdad458679d6e988 (patch) | |
tree | 324ade0863f0680002324ccddcd8f4ae5e06f97c /lib/private | |
parent | ec07ca2abbc88f395b8eeedc4b2e5b679018a673 (diff) | |
download | nextcloud-server-68ce17e59bf8bc09757f9b56fdad458679d6e988.tar.gz nextcloud-server-68ce17e59bf8bc09757f9b56fdad458679d6e988.zip |
Unify links to php.net
Update all links to https://www.php.net/
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/AppFramework/Http/Request.php | 2 | ||||
-rw-r--r-- | lib/private/DB/QueryBuilder/QueryBuilder.php | 2 | ||||
-rw-r--r-- | lib/private/Files/Storage/Wrapper/Encoding.php | 38 | ||||
-rw-r--r-- | lib/private/Files/Storage/Wrapper/Encryption.php | 20 | ||||
-rw-r--r-- | lib/private/Files/Storage/Wrapper/Jail.php | 38 | ||||
-rw-r--r-- | lib/private/Files/Storage/Wrapper/Quota.php | 6 | ||||
-rw-r--r-- | lib/private/Files/Storage/Wrapper/Wrapper.php | 38 | ||||
-rw-r--r-- | lib/private/Preview/HEIC.php | 2 | ||||
-rw-r--r-- | lib/private/Share/SearchResultSorter.php | 2 | ||||
-rw-r--r-- | lib/private/legacy/OC_Helper.php | 6 | ||||
-rw-r--r-- | lib/private/legacy/OC_Image.php | 2 |
11 files changed, 78 insertions, 78 deletions
diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php index dcc3c8ec68d..537c8c08fa1 100644 --- a/lib/private/AppFramework/Http/Request.php +++ b/lib/private/AppFramework/Http/Request.php @@ -134,7 +134,7 @@ class Request implements \ArrayAccess, \Countable, IRequest { * @param IConfig $config * @param CsrfTokenManager|null $csrfTokenManager * @param string $stream - * @see http://www.php.net/manual/en/reserved.variables.php + * @see https://www.php.net/manual/en/reserved.variables.php */ public function __construct(array $vars= [], ISecureRandom $secureRandom = null, diff --git a/lib/private/DB/QueryBuilder/QueryBuilder.php b/lib/private/DB/QueryBuilder/QueryBuilder.php index 4fde0fb4519..474353021d5 100644 --- a/lib/private/DB/QueryBuilder/QueryBuilder.php +++ b/lib/private/DB/QueryBuilder/QueryBuilder.php @@ -1054,7 +1054,7 @@ class QueryBuilder implements IQueryBuilder { * placeholder for you. An automatic placeholder will be of the name * ':dcValue1', ':dcValue2' etc. * - * For more information see {@link http://php.net/pdostatement-bindparam} + * For more information see {@link https://www.php.net/pdostatement-bindparam} * * Example: * <code> diff --git a/lib/private/Files/Storage/Wrapper/Encoding.php b/lib/private/Files/Storage/Wrapper/Encoding.php index a2ef1780d6c..aa5c0e99c76 100644 --- a/lib/private/Files/Storage/Wrapper/Encoding.php +++ b/lib/private/Files/Storage/Wrapper/Encoding.php @@ -124,7 +124,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.mkdir.php + * see https://www.php.net/manual/en/function.mkdir.php * * @param string $path * @return bool @@ -139,7 +139,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.rmdir.php + * see https://www.php.net/manual/en/function.rmdir.php * * @param string $path * @return bool @@ -153,7 +153,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.opendir.php + * see https://www.php.net/manual/en/function.opendir.php * * @param string $path * @return resource @@ -163,7 +163,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.is_dir.php + * see https://www.php.net/manual/en/function.is_dir.php * * @param string $path * @return bool @@ -173,7 +173,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.is_file.php + * see https://www.php.net/manual/en/function.is_file.php * * @param string $path * @return bool @@ -183,7 +183,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.stat.php + * see https://www.php.net/manual/en/function.stat.php * only the following keys are required in the result: size and mtime * * @param string $path @@ -194,7 +194,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.filetype.php + * see https://www.php.net/manual/en/function.filetype.php * * @param string $path * @return bool @@ -204,7 +204,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.filesize.php + * see https://www.php.net/manual/en/function.filesize.php * The result for filesize when called on a folder is required to be 0 * * @param string $path @@ -276,7 +276,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.file_exists.php + * see https://www.php.net/manual/en/function.file_exists.php * * @param string $path * @return bool @@ -286,7 +286,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.filemtime.php + * see https://www.php.net/manual/en/function.filemtime.php * * @param string $path * @return int @@ -296,7 +296,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.file_get_contents.php + * see https://www.php.net/manual/en/function.file_get_contents.php * * @param string $path * @return string @@ -306,7 +306,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.file_put_contents.php + * see https://www.php.net/manual/en/function.file_put_contents.php * * @param string $path * @param string $data @@ -317,7 +317,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.unlink.php + * see https://www.php.net/manual/en/function.unlink.php * * @param string $path * @return bool @@ -331,7 +331,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.rename.php + * see https://www.php.net/manual/en/function.rename.php * * @param string $path1 * @param string $path2 @@ -343,7 +343,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.copy.php + * see https://www.php.net/manual/en/function.copy.php * * @param string $path1 * @param string $path2 @@ -354,7 +354,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.fopen.php + * see https://www.php.net/manual/en/function.fopen.php * * @param string $path * @param string $mode @@ -380,7 +380,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.hash.php + * see https://www.php.net/manual/en/function.hash.php * * @param string $type * @param string $path @@ -392,7 +392,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.free_space.php + * see https://www.php.net/manual/en/function.free_space.php * * @param string $path * @return int @@ -412,7 +412,7 @@ class Encoding extends Wrapper { } /** - * see http://php.net/manual/en/function.touch.php + * see https://www.php.net/manual/en/function.touch.php * If the backend does not support the operation, false should be returned * * @param string $path diff --git a/lib/private/Files/Storage/Wrapper/Encryption.php b/lib/private/Files/Storage/Wrapper/Encryption.php index 3a97764fbb8..04c278fb570 100644 --- a/lib/private/Files/Storage/Wrapper/Encryption.php +++ b/lib/private/Files/Storage/Wrapper/Encryption.php @@ -132,7 +132,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.filesize.php + * see https://www.php.net/manual/en/function.filesize.php * The result for filesize when called on a folder is required to be 0 * * @param string $path @@ -210,7 +210,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.file_get_contents.php + * see https://www.php.net/manual/en/function.file_get_contents.php * * @param string $path * @return string @@ -231,7 +231,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.file_put_contents.php + * see https://www.php.net/manual/en/function.file_put_contents.php * * @param string $path * @param string $data @@ -250,7 +250,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.unlink.php + * see https://www.php.net/manual/en/function.unlink.php * * @param string $path * @return bool @@ -270,7 +270,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.rename.php + * see https://www.php.net/manual/en/function.rename.php * * @param string $path1 * @param string $path2 @@ -302,7 +302,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.rmdir.php + * see https://www.php.net/manual/en/function.rmdir.php * * @param string $path * @return bool @@ -344,7 +344,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.copy.php + * see https://www.php.net/manual/en/function.copy.php * * @param string $path1 * @param string $path2 @@ -364,7 +364,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.fopen.php + * see https://www.php.net/manual/en/function.fopen.php * * @param string $path * @param string $mode @@ -807,7 +807,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.stat.php + * see https://www.php.net/manual/en/function.stat.php * only the following keys are required in the result: size and mtime * * @param string $path @@ -823,7 +823,7 @@ class Encryption extends Wrapper { } /** - * see http://php.net/manual/en/function.hash.php + * see https://www.php.net/manual/en/function.hash.php * * @param string $type * @param string $path diff --git a/lib/private/Files/Storage/Wrapper/Jail.php b/lib/private/Files/Storage/Wrapper/Jail.php index 449a238096d..76121cbb6c8 100644 --- a/lib/private/Files/Storage/Wrapper/Jail.php +++ b/lib/private/Files/Storage/Wrapper/Jail.php @@ -83,7 +83,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.mkdir.php + * see https://www.php.net/manual/en/function.mkdir.php * * @param string $path * @return bool @@ -93,7 +93,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.rmdir.php + * see https://www.php.net/manual/en/function.rmdir.php * * @param string $path * @return bool @@ -103,7 +103,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.opendir.php + * see https://www.php.net/manual/en/function.opendir.php * * @param string $path * @return resource @@ -113,7 +113,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.is_dir.php + * see https://www.php.net/manual/en/function.is_dir.php * * @param string $path * @return bool @@ -123,7 +123,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.is_file.php + * see https://www.php.net/manual/en/function.is_file.php * * @param string $path * @return bool @@ -133,7 +133,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.stat.php + * see https://www.php.net/manual/en/function.stat.php * only the following keys are required in the result: size and mtime * * @param string $path @@ -144,7 +144,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.filetype.php + * see https://www.php.net/manual/en/function.filetype.php * * @param string $path * @return bool @@ -154,7 +154,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.filesize.php + * see https://www.php.net/manual/en/function.filesize.php * The result for filesize when called on a folder is required to be 0 * * @param string $path @@ -226,7 +226,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.file_exists.php + * see https://www.php.net/manual/en/function.file_exists.php * * @param string $path * @return bool @@ -236,7 +236,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.filemtime.php + * see https://www.php.net/manual/en/function.filemtime.php * * @param string $path * @return int @@ -246,7 +246,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.file_get_contents.php + * see https://www.php.net/manual/en/function.file_get_contents.php * * @param string $path * @return string @@ -256,7 +256,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.file_put_contents.php + * see https://www.php.net/manual/en/function.file_put_contents.php * * @param string $path * @param string $data @@ -267,7 +267,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.unlink.php + * see https://www.php.net/manual/en/function.unlink.php * * @param string $path * @return bool @@ -277,7 +277,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.rename.php + * see https://www.php.net/manual/en/function.rename.php * * @param string $path1 * @param string $path2 @@ -288,7 +288,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.copy.php + * see https://www.php.net/manual/en/function.copy.php * * @param string $path1 * @param string $path2 @@ -299,7 +299,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.fopen.php + * see https://www.php.net/manual/en/function.fopen.php * * @param string $path * @param string $mode @@ -321,7 +321,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.hash.php + * see https://www.php.net/manual/en/function.hash.php * * @param string $type * @param string $path @@ -333,7 +333,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.free_space.php + * see https://www.php.net/manual/en/function.free_space.php * * @param string $path * @return int @@ -353,7 +353,7 @@ class Jail extends Wrapper { } /** - * see http://php.net/manual/en/function.touch.php + * see https://www.php.net/manual/en/function.touch.php * If the backend does not support the operation, false should be returned * * @param string $path diff --git a/lib/private/Files/Storage/Wrapper/Quota.php b/lib/private/Files/Storage/Wrapper/Quota.php index 4b99af46b02..e1a72227501 100644 --- a/lib/private/Files/Storage/Wrapper/Quota.php +++ b/lib/private/Files/Storage/Wrapper/Quota.php @@ -115,7 +115,7 @@ class Quota extends Wrapper { } /** - * see http://php.net/manual/en/function.file_put_contents.php + * see https://www.php.net/manual/en/function.file_put_contents.php * * @param string $path * @param string $data @@ -131,7 +131,7 @@ class Quota extends Wrapper { } /** - * see http://php.net/manual/en/function.copy.php + * see https://www.php.net/manual/en/function.copy.php * * @param string $source * @param string $target @@ -147,7 +147,7 @@ class Quota extends Wrapper { } /** - * see http://php.net/manual/en/function.fopen.php + * see https://www.php.net/manual/en/function.fopen.php * * @param string $path * @param string $mode diff --git a/lib/private/Files/Storage/Wrapper/Wrapper.php b/lib/private/Files/Storage/Wrapper/Wrapper.php index 4584bebe076..e8d84012416 100644 --- a/lib/private/Files/Storage/Wrapper/Wrapper.php +++ b/lib/private/Files/Storage/Wrapper/Wrapper.php @@ -74,7 +74,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.mkdir.php + * see https://www.php.net/manual/en/function.mkdir.php * * @param string $path * @return bool @@ -84,7 +84,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.rmdir.php + * see https://www.php.net/manual/en/function.rmdir.php * * @param string $path * @return bool @@ -94,7 +94,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.opendir.php + * see https://www.php.net/manual/en/function.opendir.php * * @param string $path * @return resource @@ -104,7 +104,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.is_dir.php + * see https://www.php.net/manual/en/function.is_dir.php * * @param string $path * @return bool @@ -114,7 +114,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.is_file.php + * see https://www.php.net/manual/en/function.is_file.php * * @param string $path * @return bool @@ -124,7 +124,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.stat.php + * see https://www.php.net/manual/en/function.stat.php * only the following keys are required in the result: size and mtime * * @param string $path @@ -135,7 +135,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.filetype.php + * see https://www.php.net/manual/en/function.filetype.php * * @param string $path * @return bool @@ -145,7 +145,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.filesize.php + * see https://www.php.net/manual/en/function.filesize.php * The result for filesize when called on a folder is required to be 0 * * @param string $path @@ -217,7 +217,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.file_exists.php + * see https://www.php.net/manual/en/function.file_exists.php * * @param string $path * @return bool @@ -227,7 +227,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.filemtime.php + * see https://www.php.net/manual/en/function.filemtime.php * * @param string $path * @return int @@ -237,7 +237,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.file_get_contents.php + * see https://www.php.net/manual/en/function.file_get_contents.php * * @param string $path * @return string @@ -247,7 +247,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.file_put_contents.php + * see https://www.php.net/manual/en/function.file_put_contents.php * * @param string $path * @param string $data @@ -258,7 +258,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.unlink.php + * see https://www.php.net/manual/en/function.unlink.php * * @param string $path * @return bool @@ -268,7 +268,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.rename.php + * see https://www.php.net/manual/en/function.rename.php * * @param string $path1 * @param string $path2 @@ -279,7 +279,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.copy.php + * see https://www.php.net/manual/en/function.copy.php * * @param string $path1 * @param string $path2 @@ -290,7 +290,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.fopen.php + * see https://www.php.net/manual/en/function.fopen.php * * @param string $path * @param string $mode @@ -312,7 +312,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.hash.php + * see https://www.php.net/manual/en/function.hash.php * * @param string $type * @param string $path @@ -324,7 +324,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.free_space.php + * see https://www.php.net/manual/en/function.free_space.php * * @param string $path * @return int @@ -344,7 +344,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea } /** - * see http://php.net/manual/en/function.touch.php + * see https://www.php.net/manual/en/function.touch.php * If the backend does not support the operation, false should be returned * * @param string $path diff --git a/lib/private/Preview/HEIC.php b/lib/private/Preview/HEIC.php index c2b9b541ad3..a21c6f48e2f 100644 --- a/lib/private/Preview/HEIC.php +++ b/lib/private/Preview/HEIC.php @@ -133,7 +133,7 @@ class HEIC extends ProviderV2 { // A bigger image calls for some better resizing algorithm // According to http://www.imagemagick.org/Usage/filter/#lanczos // the catrom filter is almost identical to Lanczos2, but according - // to http://php.net/manual/en/imagick.resizeimage.php it is + // to https://www.php.net/manual/en/imagick.resizeimage.php it is // significantly faster $bp->resizeImage($maxX, $maxY, \Imagick::FILTER_CATROM, 1, true); } diff --git a/lib/private/Share/SearchResultSorter.php b/lib/private/Share/SearchResultSorter.php index 2151eb2acb6..3392a546d0f 100644 --- a/lib/private/Share/SearchResultSorter.php +++ b/lib/private/Share/SearchResultSorter.php @@ -51,7 +51,7 @@ class SearchResultSorter { /** * User and Group names matching the search term at the beginning shall appear * on top of the share dialog. Following entries in alphabetical order. - * Callback function for usort. http://php.net/usort + * Callback function for usort. https://www.php.net/usort */ public function sort($a, $b) { if (!isset($a[$this->key]) || !isset($b[$this->key])) { diff --git a/lib/private/legacy/OC_Helper.php b/lib/private/legacy/OC_Helper.php index 77f0d922564..05a85386b4f 100644 --- a/lib/private/legacy/OC_Helper.php +++ b/lib/private/legacy/OC_Helper.php @@ -94,7 +94,7 @@ class OC_Helper { * * Makes 2kB to 2048. * - * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418 + * Inspired by: https://www.php.net/manual/en/function.filesize.php#92418 */ public static function computerFileSize($str) { $str = strtolower($str); @@ -340,7 +340,7 @@ class OC_Helper { * @return array * * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. - * based on http://www.php.net/manual/en/function.array-change-key-case.php#107715 + * based on https://www.php.net/manual/en/function.array-change-key-case.php#107715 * */ public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') { @@ -361,7 +361,7 @@ class OC_Helper { * * performs a search in a nested array * - * taken from http://www.php.net/manual/en/function.array-search.php#97645 + * taken from https://www.php.net/manual/en/function.array-search.php#97645 */ public static function recursiveArraySearch($haystack, $needle, $index = null) { $aIt = new RecursiveArrayIterator($haystack); diff --git a/lib/private/legacy/OC_Image.php b/lib/private/legacy/OC_Image.php index 3e9812c99f2..5a516fb1da2 100644 --- a/lib/private/legacy/OC_Image.php +++ b/lib/private/legacy/OC_Image.php @@ -1275,7 +1275,7 @@ if (!function_exists('exif_imagetype')) { /** * Workaround if exif_imagetype does not exist * - * @link http://www.php.net/manual/en/function.exif-imagetype.php#80383 + * @link https://www.php.net/manual/en/function.exif-imagetype.php#80383 * @param string $fileName * @return string|boolean */ |