Changeset 2745821
- Timestamp:
- 06/21/2022 11:39:00 AM (3 years ago)
- Location:
- phraseanet-client/trunk
- Files:
-
- 1 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
phraseanet-client/trunk/admin/partials/phraseanet-admin-display-auth.php
r2709725 r2745821 21 21 22 22 <div class="phraseanet-client-class"> 23 24 <?php require_once 'logo.php'; ?>23 24 <?php require_once 'logo.php'; ?> 25 25 26 26 27 27 28 <form class="col-md-12 col-lg-12 col-sm-12" method="post" action="options.php">28 <form class="col-md-12 col-lg-12 col-sm-12" method="post" action="options.php"> 29 29 30 30 31 <?php31 <?php 32 32 settings_fields('phraseanetClientSettings'); 33 33 do_settings_sections('phraseanetClientSettings'); … … 50 50 51 51 52 <div class="col-sm-8 col-md-8 col-lg-8">53 <div class="row">54 <div class="col-sm-6">55 <label for="auth_type" class="form-label"><b><?php echo esc_attr(_e('Auth Phraseanet with token', 'phraseanet')); ?></b>56 <input type="radio" class="auth_type" name="phraseanet_auth_type" value="token"57 < ?php if (empty($auth_type) or $auth_type=='token') {52 <div class="col-sm-8 col-md-8 col-lg-8"> 53 <div class="row"> 54 <div class="col-sm-6" style="display: none;"> 55 <label for="auth_type" 56 class="form-label"><b><?php echo esc_attr(_e('Auth Phraseanet with token', 'phraseanet')); ?></b> 57 <input type="radio" class="auth_type" name="phraseanet_auth_type" value="token" <?php if (empty($auth_type) or $auth_type=='token') { 58 58 echo esc_attr("checked"); 59 59 } ?>> 60 </label> 60 </label> 61 62 </div> 63 61 64 62 65 </div> 63 64 65 </div>66 </div>67 68 69 <div class="col-sm-6 col-md-6 col-lg-6">70 71 <div class="mb-3">72 <label for="url" class="form-label"><b><?php echo esc_attr(_e('Phraseanet URL', 'phraseanet')); ?></b></label>73 <input type="text" name="phraseanet_url" class="form-control" id="url" aria-describedby="urlHelp"74 placeholder="<?php echo esc_attr(_e('Enter your phraseanet url', 'phraseanet')); ?>" value="<?php echo esc_url(get_option('phraseanet_url')); ?>">75 <div id="urlHelp" class="form-text">eg. https://demo.alchemyasp.com/</div>76 66 </div> 77 67 78 68 69 <div class="col-sm-6 col-md-6 col-lg-6"> 79 70 80 <div class="mb-3 login"> 81 <label for="username" class="form-label"><b><?php echo esc_attr(_e('Username', 'phraseanet')); ?></b></label> 82 <input type="text" name="phraseanet_username" class="form-control" id="username" aria-describedby="username" 83 placeholder="<?php echo esc_attr(_e('Enter your phraseanet Username', 'phraseanet')); ?>" value="<?php echo esc_attr(get_option('phraseanet_username')); ?>"> 84 <div id="username" class="form-text"> </div> 71 <div class="mb-3"> 72 <label for="url" class="form-label"><b><?php echo esc_attr(_e('Phraseanet URL', 'phraseanet')); ?></b></label> 73 <input type="text" name="phraseanet_url" class="form-control" id="url" aria-describedby="urlHelp" 74 placeholder="<?php echo esc_attr(_e('Enter your phraseanet url', 'phraseanet')); ?>" 75 value="<?php echo esc_url(get_option('phraseanet_url')); ?>" required="required"> 76 <div id="urlHelp" class="form-text">eg. https://demo.alchemyasp.com/</div> 77 </div> 78 79 <div class="mb-3 "> 80 <label for="clientId" class="form-label"><b><?php echo esc_attr(_e('Client id', 'phraseanet')); ?></b></label> 81 <input type="text" name="phraseanet_client_id" class="form-control" id="clientId" 82 aria-describedby="clientIdHelp" 83 placeholder="<?php echo esc_attr(_e('Enter your phraseanet client id', 'phraseanet')); ?>" 84 value="<?php echo esc_attr(get_option('phraseanet_client_id')); ?>" required="required"> 85 <div id="clientIdHelp" class="form-text"> </div> 86 </div> 87 88 <div class="mb-3 "> 89 <label for="clientSecret" 90 class="form-label"><b><?php echo esc_attr(_e('Client Secret', 'phraseanet')); ?></b></label> 91 <input type="text" name="phraseanet_client_secret" class="form-control" id="clientSecret" 92 aria-describedby="clientSecretHelp" 93 placeholder="<?php echo esc_attr(_e('Enter your phraseanet client secret', 'phraseanet')); ?>" 94 value="<?php echo esc_attr(get_option('phraseanet_client_secret')); ?>" required="required"> 95 <div id="clientSecretHelp" class="form-text"> </div> 96 </div> 97 98 <div class="mb-3 token"> 99 <label for="phras_token" class="form-label"><b><?php echo esc_attr(_e('Token', 'phraseanet')); ?></b></label> 100 <input type="text" name="phraseanet_token" class="form-control" id="phras_token" 101 aria-describedby="phras_tokenHelp" placeholder="<?php echo esc_attr(_e('Enter your Token', 'phraseanet')); ?>" 102 value="<?php echo esc_attr(get_option('phraseanet_token')); ?>" required="required"> 103 <div id="phras_tokenHelp" class="form-text"> 104 <?php echo esc_attr(_e('Generate token in phraseanet and add it here', 'phraseanet')); ?></div> 105 </div> 106 107 <button type="submit" class="btn btn-primary"><?php echo esc_attr(_e('Save', 'phraseanet')); ?></button> 108 85 109 </div> 86 87 <div class="mb-3 login"> 88 <label for="password" class="form-label"><b><?php echo esc_attr(_e('Password', 'phraseanet')); ?></b></label> 89 <input type="text" name="phraseanet_password" class="form-control" id="password" aria-describedby="password" 90 placeholder="<?php echo esc_attr(_e('Enter your phraseanet Password', 'phraseanet')); ?>" value="<?php echo esc_attr(get_option('phraseanet_password')); ?>"> 91 <div id="password" class="form-text"> </div> 92 </div> 93 94 95 96 97 <div class="mb-3 "> 98 <label for="clientId" class="form-label"><b><?php echo esc_attr(_e('Client id', 'phraseanet')); ?></b></label> 99 <input type="text" name="phraseanet_client_id" class="form-control" id="clientId" aria-describedby="clientIdHelp" 100 placeholder="<?php echo esc_attr(_e('Enter your phraseanet client id', 'phraseanet')); ?>" value="<?php echo esc_attr(get_option('phraseanet_client_id')); ?>"> 101 <div id="clientIdHelp" class="form-text"> </div> 102 </div> 103 104 <div class="mb-3 "> 105 <label for="clientSecret" class="form-label"><b><?php echo esc_attr(_e('Client Secret', 'phraseanet')); ?></b></label> 106 <input type="text" name="phraseanet_client_secret" class="form-control" id="clientSecret" 107 aria-describedby="clientSecretHelp" placeholder="<?php echo esc_attr(_e('Enter your phraseanet client secret', 'phraseanet')); ?>" 108 value="<?php echo esc_attr(get_option('phraseanet_client_secret')); ?>"> 109 <div id="clientSecretHelp" class="form-text"> </div> 110 </div> 111 112 <div class="mb-3 token"> 113 <label for="phras_token" class="form-label"><b><?php echo esc_attr(_e('Token', 'phraseanet')); ?></b></label> 114 <input type="text" name="phraseanet_token" class="form-control" id="phras_token" 115 aria-describedby="phras_tokenHelp" placeholder="<?php echo esc_attr(_e('Enter your Token', 'phraseanet')); ?>" 116 value="<?php echo esc_attr(get_option('phraseanet_token')); ?>"> 117 <div id="phras_tokenHelp" class="form-text"><?php echo esc_attr(_e('Generate token in phraseanet and add it here', 'phraseanet')); ?></div> 118 </div> 119 120 <button type="submit" class="btn btn-primary"><?php echo esc_attr(_e('Save', 'phraseanet')); ?></button> 121 122 </div> 123 </form> 110 </form> 124 111 </div> -
phraseanet-client/trunk/composer.lock
r2739240 r2745821 435 435 { 436 436 "name": "guzzlehttp/psr7", 437 "version": "1. 8.5",437 "version": "1.9.0", 438 438 "source": { 439 439 "type": "git", 440 440 "url": "https://github.com/guzzle/psr7.git", 441 "reference": " 337e3ad8e5716c15f9657bd214d16cc5e69df268"442 }, 443 "dist": { 444 "type": "zip", 445 "url": "https://api.github.com/repos/guzzle/psr7/zipball/ 337e3ad8e5716c15f9657bd214d16cc5e69df268",446 "reference": " 337e3ad8e5716c15f9657bd214d16cc5e69df268",441 "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318" 442 }, 443 "dist": { 444 "type": "zip", 445 "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", 446 "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", 447 447 "shasum": "" 448 448 }, … … 465 465 "extra": { 466 466 "branch-alias": { 467 "dev-master": "1. 7-dev"467 "dev-master": "1.9-dev" 468 468 } 469 469 }, … … 525 525 "support": { 526 526 "issues": "https://github.com/guzzle/psr7/issues", 527 "source": "https://github.com/guzzle/psr7/tree/1. 8.5"527 "source": "https://github.com/guzzle/psr7/tree/1.9.0" 528 528 }, 529 529 "funding": [ … … 541 541 } 542 542 ], 543 "time": "2022-0 3-20T21:51:18+00:00"543 "time": "2022-06-20T21:43:03+00:00" 544 544 }, 545 545 { … … 624 624 { 625 625 "name": "phraseanet/php-sdk", 626 "version": "dev- e9db90033028a552e298f090d2d7c7704fce5c60",626 "version": "dev-546800e74517c848ba1f40c1b6ebf0cf7667303f", 627 627 "dist": { 628 628 "type": "path", -
phraseanet-client/trunk/phraseanet.php
r2739240 r2745821 16 16 * Plugin URI: https://www.phraseanet.com/ 17 17 * Description: This plugin creates the possibility to get and add assets from Phraseanet server into your wordpress website. This plugin allows you to create a phraseanet Gutenberg block with various custom configurations that allows you to customize the block. 18 * Version: 1.3.1 018 * Version: 1.3.11 19 19 * Author: Alchemy 20 20 * Author URI: https://www.alchemy.fr … … 57 57 * Rename this for your plugin and update it as you release new versions. 58 58 */ 59 define("PHRASEANET_VERSION", "1.3.1 0");59 define("PHRASEANET_VERSION", "1.3.11"); 60 60 61 61 /** -
phraseanet-client/trunk/readme.txt
r2739240 r2745821 5 5 Tested up to: 6.0 6 6 Requires PHP: PHP 7.4.4 7 Stable tag: 1.3.1 07 Stable tag: 1.3.11 8 8 License: GNU General Public License (GPL) version 3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.txt -
phraseanet-client/trunk/vendor/autoload.php
r2739240 r2745821 10 10 require_once __DIR__ . '/composer/autoload_real.php'; 11 11 12 return ComposerAutoloaderInit 2cb23caea82583c5a410c0c18dfa7195::getLoader();12 return ComposerAutoloaderInitddf0a3a085f12c07195598ab1c581851::getLoader(); -
phraseanet-client/trunk/vendor/composer/autoload_real.php
r2739240 r2745821 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 2cb23caea82583c5a410c0c18dfa71955 class ComposerAutoloaderInitddf0a3a085f12c07195598ab1c581851 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 2cb23caea82583c5a410c0c18dfa7195', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitddf0a3a085f12c07195598ab1c581851', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 2cb23caea82583c5a410c0c18dfa7195', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitddf0a3a085f12c07195598ab1c581851', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 2cb23caea82583c5a410c0c18dfa7195::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInitddf0a3a085f12c07195598ab1c581851::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $includeFiles = \Composer\Autoload\ComposerStaticInit 2cb23caea82583c5a410c0c18dfa7195::$files;36 $includeFiles = \Composer\Autoload\ComposerStaticInitddf0a3a085f12c07195598ab1c581851::$files; 37 37 foreach ($includeFiles as $fileIdentifier => $file) { 38 composerRequire 2cb23caea82583c5a410c0c18dfa7195($fileIdentifier, $file);38 composerRequireddf0a3a085f12c07195598ab1c581851($fileIdentifier, $file); 39 39 } 40 40 … … 48 48 * @return void 49 49 */ 50 function composerRequire 2cb23caea82583c5a410c0c18dfa7195($fileIdentifier, $file)50 function composerRequireddf0a3a085f12c07195598ab1c581851($fileIdentifier, $file) 51 51 { 52 52 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
phraseanet-client/trunk/vendor/composer/autoload_static.php
r2739240 r2745821 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 2cb23caea82583c5a410c0c18dfa71957 class ComposerStaticInitddf0a3a085f12c07195598ab1c581851 8 8 { 9 9 public static $files = array ( … … 106 106 { 107 107 return \Closure::bind(function () use ($loader) { 108 $loader->prefixLengthsPsr4 = ComposerStaticInit 2cb23caea82583c5a410c0c18dfa7195::$prefixLengthsPsr4;109 $loader->prefixDirsPsr4 = ComposerStaticInit 2cb23caea82583c5a410c0c18dfa7195::$prefixDirsPsr4;110 $loader->prefixesPsr0 = ComposerStaticInit 2cb23caea82583c5a410c0c18dfa7195::$prefixesPsr0;111 $loader->classMap = ComposerStaticInit 2cb23caea82583c5a410c0c18dfa7195::$classMap;108 $loader->prefixLengthsPsr4 = ComposerStaticInitddf0a3a085f12c07195598ab1c581851::$prefixLengthsPsr4; 109 $loader->prefixDirsPsr4 = ComposerStaticInitddf0a3a085f12c07195598ab1c581851::$prefixDirsPsr4; 110 $loader->prefixesPsr0 = ComposerStaticInitddf0a3a085f12c07195598ab1c581851::$prefixesPsr0; 111 $loader->classMap = ComposerStaticInitddf0a3a085f12c07195598ab1c581851::$classMap; 112 112 113 113 }, null, ClassLoader::class); -
phraseanet-client/trunk/vendor/composer/installed.json
r2739240 r2745821 444 444 { 445 445 "name": "guzzlehttp/psr7", 446 "version": "1. 8.5",447 "version_normalized": "1. 8.5.0",446 "version": "1.9.0", 447 "version_normalized": "1.9.0.0", 448 448 "source": { 449 449 "type": "git", 450 450 "url": "https://github.com/guzzle/psr7.git", 451 "reference": " 337e3ad8e5716c15f9657bd214d16cc5e69df268"452 }, 453 "dist": { 454 "type": "zip", 455 "url": "https://api.github.com/repos/guzzle/psr7/zipball/ 337e3ad8e5716c15f9657bd214d16cc5e69df268",456 "reference": " 337e3ad8e5716c15f9657bd214d16cc5e69df268",451 "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318" 452 }, 453 "dist": { 454 "type": "zip", 455 "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", 456 "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", 457 457 "shasum": "" 458 458 }, … … 472 472 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" 473 473 }, 474 "time": "2022-0 3-20T21:51:18+00:00",474 "time": "2022-06-20T21:43:03+00:00", 475 475 "type": "library", 476 476 "extra": { 477 477 "branch-alias": { 478 "dev-master": "1. 7-dev"478 "dev-master": "1.9-dev" 479 479 } 480 480 }, … … 537 537 "support": { 538 538 "issues": "https://github.com/guzzle/psr7/issues", 539 "source": "https://github.com/guzzle/psr7/tree/1. 8.5"539 "source": "https://github.com/guzzle/psr7/tree/1.9.0" 540 540 }, 541 541 "funding": [ … … 639 639 { 640 640 "name": "phraseanet/php-sdk", 641 "version": "dev- e9db90033028a552e298f090d2d7c7704fce5c60",642 "version_normalized": "dev- e9db90033028a552e298f090d2d7c7704fce5c60",641 "version": "dev-546800e74517c848ba1f40c1b6ebf0cf7667303f", 642 "version_normalized": "dev-546800e74517c848ba1f40c1b6ebf0cf7667303f", 643 643 "dist": { 644 644 "type": "path", -
phraseanet-client/trunk/vendor/composer/installed.php
r2739240 r2745821 2 2 'root' => array( 3 3 'name' => 'phraseanet/wordpress-plugin', 4 'pretty_version' => 'dev- e9db90033028a552e298f090d2d7c7704fce5c60',5 'version' => 'dev- e9db90033028a552e298f090d2d7c7704fce5c60',6 'reference' => ' e9db90033028a552e298f090d2d7c7704fce5c60',4 'pretty_version' => 'dev-546800e74517c848ba1f40c1b6ebf0cf7667303f', 5 'version' => 'dev-546800e74517c848ba1f40c1b6ebf0cf7667303f', 6 'reference' => '546800e74517c848ba1f40c1b6ebf0cf7667303f', 7 7 'type' => 'plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 57 57 ), 58 58 'guzzlehttp/psr7' => array( 59 'pretty_version' => '1. 8.5',60 'version' => '1. 8.5.0',61 'reference' => ' 337e3ad8e5716c15f9657bd214d16cc5e69df268',59 'pretty_version' => '1.9.0', 60 'version' => '1.9.0.0', 61 'reference' => 'e98e3e6d4f86621a9b75f623996e6bbdeb4b9318', 62 62 'type' => 'library', 63 63 'install_path' => __DIR__ . '/../guzzlehttp/psr7', … … 75 75 ), 76 76 'phraseanet/php-sdk' => array( 77 'pretty_version' => 'dev- e9db90033028a552e298f090d2d7c7704fce5c60',78 'version' => 'dev- e9db90033028a552e298f090d2d7c7704fce5c60',77 'pretty_version' => 'dev-546800e74517c848ba1f40c1b6ebf0cf7667303f', 78 'version' => 'dev-546800e74517c848ba1f40c1b6ebf0cf7667303f', 79 79 'reference' => 'e943138ec42c0519c6e917b6ad01cdd4e9b211b1', 80 80 'type' => 'library', … … 84 84 ), 85 85 'phraseanet/wordpress-plugin' => array( 86 'pretty_version' => 'dev- e9db90033028a552e298f090d2d7c7704fce5c60',87 'version' => 'dev- e9db90033028a552e298f090d2d7c7704fce5c60',88 'reference' => ' e9db90033028a552e298f090d2d7c7704fce5c60',86 'pretty_version' => 'dev-546800e74517c848ba1f40c1b6ebf0cf7667303f', 87 'version' => 'dev-546800e74517c848ba1f40c1b6ebf0cf7667303f', 88 'reference' => '546800e74517c848ba1f40c1b6ebf0cf7667303f', 89 89 'type' => 'plugin', 90 90 'install_path' => __DIR__ . '/../../', -
phraseanet-client/trunk/vendor/guzzlehttp/psr7/CHANGELOG.md
r2736415 r2745821 4 4 All notable changes to this project will be documented in this file. 5 5 6 The format is based on [Keep a Changelog](http ://keepachangelog.com/en/1.0.0/)7 and this project adheres to [Semantic Versioning](http ://semver.org/spec/v2.0.0.html).6 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 7 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 8 8 9 9 10 10 ## Unreleased 11 12 ## 1.9.0 - 2022-06-20 13 14 ### Added 15 16 - Added `UriComparator::isCrossOrigin` method 11 17 12 18 ## 1.8.5 - 2022-03-20 -
phraseanet-client/trunk/vendor/guzzlehttp/psr7/README.md
r2686612 r2745821 1 1 # PSR-7 Message Implementation 2 2 3 This repository contains a full [PSR-7](http ://www.php-fig.org/psr/psr-7/)3 This repository contains a full [PSR-7](https://www.php-fig.org/psr/psr-7/) 4 4 message implementation, several stream decorators, and some helpful 5 5 functionality like query string parsing. … … 660 660 `public static function fromParts(array $parts): UriInterface` 661 661 662 Creates a URI from a hash of [`parse_url`](http ://php.net/manual/en/function.parse-url.php) components.662 Creates a URI from a hash of [`parse_url`](https://www.php.net/manual/en/function.parse-url.php) components. 663 663 664 664 … … 684 684 Creates a new URI with a specific query string value removed. Any existing query string values that exactly match the 685 685 provided key are removed. 686 687 ## Cross-Origin Detection 688 689 `GuzzleHttp\Psr7\UriComparator` provides methods to determine if a modified URL should be considered cross-origin. 690 691 ### `GuzzleHttp\Psr7\UriComparator::isCrossOrigin` 692 693 `public static function isCrossOrigin(UriInterface $original, UriInterface $modified): bool` 694 695 Determines if a modified URL should be considered cross-origin with respect to an original URL. 686 696 687 697 ## Reference Resolution … … 810 820 811 821 822 ## Version Guidance 823 824 | Version | Status | PHP Version | 825 |---------|----------------|------------------| 826 | 1.x | Security fixes | >=5.4,<8.1 | 827 | 2.x | Latest | ^7.2.5 \|\| ^8.0 | 828 829 812 830 ## Security 813 831 814 832 If you discover a security vulnerability within this package, please send an email to [email protected]. All security vulnerabilities will be promptly addressed. Please do not disclose security-related issues publicly until a fix has been announced. Please see [Security Policy](https://github.com/guzzle/psr7/security/policy) for more information. 815 833 834 816 835 ## License 817 836 818 837 Guzzle is made available under the MIT License (MIT). Please see [License File](LICENSE) for more information. 819 838 839 820 840 ## For Enterprise 821 841 -
phraseanet-client/trunk/vendor/guzzlehttp/psr7/composer.json
r2736415 r2745821 64 64 "extra": { 65 65 "branch-alias": { 66 "dev-master": "1. 7-dev"66 "dev-master": "1.9-dev" 67 67 } 68 68 },
Note: See TracChangeset
for help on using the changeset viewer.