PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
CustomFunction
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cloudinary\Transformation; use Cloudinary\StringUtils; use Cloudinary\Transformation\Qualifier\BaseQualifier; /** * Calls a custom function. * * **Learn more**: <a href="https://cloudinary.com/documentation/custom_functions" target="_blank">Custom functions</a> * * @api */ class CustomFunction extends BaseQualifier { const VALUE_CLASS = CustomFunctionValue::class; use CustomFunctionTrait; /** * @var string $name Serialisation name. */ protected static $name = 'custom_function'; /** * @var string $key Serialization key. */ protected static $key = 'fn'; /** * WASM. * * @var string */ const WASM = 'wasm'; /** * Remote. * * @var string */ const REMOTE = 'remote'; /** * CustomFunction constructor. * * @param string $source Source of this custom function * @param string $type The type of custom function (CustomFunction::REMOTE or CustomFunction::WASM). * @param bool $preprocess Preprocess custom function. Only remote functions are supported for preprocess * * @see CustomFunction::REMOTE * @see CustomFunction::WASM */ public function __construct($source, $type = null, $preprocess = false) { parent::__construct( $type === self::REMOTE ? StringUtils::base64UrlEncode($source) : $source, $type ); $this->preprocess($preprocess); } /** * Defines the function as the remote preprocessing custom function. * * For more information about preprocessing custom functions see the documentation. * * @param bool $preprocess Whether to defines the function as the remote preprocessing custom function. * * @return CustomFunction * * @see \Cloudinary\Transformation\CustomFunction * @see https://cloudinary.com/documentation/custom_functions#preprocessing_custom_functions */ public function preprocess($preprocess = true) { $this->getValue()->setSimpleValue('preprocess', $preprocess ? 'pre' : null); return $this; } }
[-] TransformationCustomFunctionTrait.php
[edit]
[+]
..
[-] CustomFunctionQualifierTrait.php
[edit]
[-] CustomFunctionValue.php
[edit]
[-] CustomFunction.php
[edit]
[-] CustomFunctionTrait.php
[edit]