PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
<?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\ClassUtils; use Cloudinary\StringUtils; /** * Class BaseComponent */ abstract class BaseComponent implements ComponentInterface { /** * @var string $name The name of the component. */ protected static $name; /** * BaseComponent constructor. * * @param mixed ...$args */ public function __construct(...$args) { //static::getName(); } /** * Internal collector of the component class constants. * * @param array $constantsList The constants that are set in the previous run of the function. * * @return array * * @internal */ protected static function getConstants(&$constantsList = null) { if (! empty($constantsList)) { return $constantsList; } $constantsList = ClassUtils::getConstants(static::class); return $constantsList; } /** * Gets the component name. * * Internal. * * @return string The component name. * * @internal */ public static function getName() { $name = static::$name; if (empty($name)) { $name = StringUtils::camelCaseToSnakeCase(ClassUtils::getBaseName(static::class)); } return $name; } /** * Non-static method for getting full name that can be determined only during runtime. * * Internal. * * @return string The component full name. * * @internal */ public function getFullName() { return self::getName(); } }
[+]
Page
[-] CommonTransformationTrait.php
[edit]
[+]
Expression
[+]
Animated
[-] Action.php
[edit]
[-] BaseComponent.php
[edit]
[+]
Positioning
[+]
..
[-] SourceBasedEffectAction.php
[edit]
[+]
Layer
[-] TransformationTrait.php
[edit]
[+]
CustomFunction
[+]
Flag
[+]
Resize
[+]
Border
[-] ComponentInterface.php
[edit]
[-] CommonTransformationInterface.php
[edit]
[+]
Video
[-] CommonTransformation.php
[edit]
[+]
Delivery
[+]
Effect
[+]
Rotation
[+]
Adjustment
[-] Transformation.php
[edit]
[+]
Qualifier
[+]
Image
[+]
Condition
[+]
Variable
[+]
Shape
[+]
Named
[+]
Background
[-] BaseAction.php
[edit]