uawdijnntqw1x1x1
IP : 216.73.216.8
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
craftcms
/
commerce
/
src
/
.
/
.
/
fields
/
Products.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\commerce\fields; use Craft; use craft\base\ElementInterface; use craft\commerce\elements\Product; use craft\commerce\gql\arguments\elements\Product as ProductArguments; use craft\commerce\gql\interfaces\elements\Product as ProductInterface; use craft\commerce\gql\resolvers\elements\Product as ProductResolver; use craft\commerce\web\assets\editproduct\EditProductAsset; use craft\fields\BaseRelationField; use craft\helpers\Gql as GqlHelper; use craft\services\Gql as GqlService; use GraphQL\Type\Definition\Type; /** * Class Product Field * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 2.0 * * @property-read array $contentGqlType */ class Products extends BaseRelationField { public function __construct(array $config = []) { // Never needed and allows us to instantiate the field while ignoring old setting until the Product field migration has run. unset($config['targetLocale']); parent::__construct($config); } /** * @inheritdoc */ public static function displayName(): string { return Craft::t('commerce', 'Commerce Products'); } /** * @inheritdoc */ public static function defaultSelectionLabel(): string { return Craft::t('commerce', 'Add a product'); } public function getInputHtml(mixed $value, ?ElementInterface $element = null): string { Craft::$app->getView()->registerAssetBundle(EditProductAsset::class); return parent::getInputHtml($value, $element); } /** * @inheritdoc * @since 3.1.4 */ public function getContentGqlType(): array|Type { return [ 'name' => $this->handle, 'type' => Type::listOf(ProductInterface::getType()), 'args' => ProductArguments::getArguments(), 'resolve' => ProductResolver::class . '::resolve', 'complexity' => GqlHelper::relatedArgumentComplexity(GqlService::GRAPHQL_COMPLEXITY_EAGER_LOAD), ]; } /** * @inheritdoc */ public static function elementType(): string { return Product::class; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/craftcms/commerce/src/././fields/Products.php