-
Notifications
You must be signed in to change notification settings - Fork 690
Expand file tree
/
Copy pathEntry.php
More file actions
3209 lines (2843 loc) · 97.6 KB
/
Entry.php
File metadata and controls
3209 lines (2843 loc) · 97.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\elements;
use Craft;
use craft\base\Colorable;
use craft\base\Element;
use craft\base\ElementContainerFieldInterface;
use craft\base\ElementInterface;
use craft\base\ExpirableElementInterface;
use craft\base\Field;
use craft\base\FieldInterface;
use craft\base\Iconic;
use craft\base\NestedElementInterface;
use craft\base\NestedElementTrait;
use craft\behaviors\DraftBehavior;
use craft\controllers\ElementIndexesController;
use craft\db\Connection;
use craft\db\FixedOrderExpression;
use craft\db\Query;
use craft\db\Table;
use craft\elements\actions\Copy;
use craft\elements\actions\Delete;
use craft\elements\actions\DeleteForSite;
use craft\elements\actions\Duplicate;
use craft\elements\actions\MoveToSection;
use craft\elements\actions\NewChild;
use craft\elements\actions\NewSiblingAfter;
use craft\elements\actions\NewSiblingBefore;
use craft\elements\actions\Restore;
use craft\elements\conditions\ElementConditionInterface;
use craft\elements\conditions\entries\EntryCondition;
use craft\elements\conditions\entries\SectionConditionRule;
use craft\elements\conditions\entries\TypeConditionRule;
use craft\elements\db\EagerLoadPlan;
use craft\elements\db\ElementQuery;
use craft\elements\db\ElementQueryInterface;
use craft\elements\db\EntryQuery;
use craft\enums\CmsEdition;
use craft\enums\Color;
use craft\enums\PropagationMethod;
use craft\events\DefineEntryTypesEvent;
use craft\events\ElementCriteriaEvent;
use craft\fieldlayoutelements\entries\EntryTitleField;
use craft\fields\Matrix;
use craft\gql\interfaces\elements\Entry as EntryInterface;
use craft\helpers\ArrayHelper;
use craft\helpers\Cp;
use craft\helpers\DateTimeHelper;
use craft\helpers\Db;
use craft\helpers\ElementHelper;
use craft\helpers\Html;
use craft\helpers\UrlHelper;
use craft\models\EntryType;
use craft\models\FieldLayout;
use craft\models\Section;
use craft\models\Section_SiteSettings;
use craft\models\Site;
use craft\records\Entry as EntryRecord;
use craft\services\ElementSources;
use craft\services\Structures;
use craft\validators\ArrayValidator;
use craft\validators\DateCompareValidator;
use craft\validators\DateTimeValidator;
use DateTime;
use GraphQL\Type\Definition\Type;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Throwable;
use yii\base\Exception;
use yii\base\InvalidArgumentException;
use yii\base\InvalidConfigException;
use yii\db\Expression;
/**
* Entry represents an entry element.
*
* @property int $typeId the entry type’s ID
* @property EntryType $type the entry type
* @property Section|null $section the entry’s section
* @property User|null $author the primary entry author
* @property User[] $authors the entry authors
* @property int|null $authorId The primary entry author’s ID
* @property int[] $authorIds the entry authors’ IDs
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0.0
*/
class Entry extends Element implements NestedElementInterface, ExpirableElementInterface, Iconic, Colorable
{
use NestedElementTrait {
eagerLoadingMap as traitEagerLoadingMap;
attributes as traitAttributes;
extraFields as traitExtraFields;
setEagerLoadedElements as traitSetEagerLoadedElements;
}
public const STATUS_LIVE = 'live';
public const STATUS_PENDING = 'pending';
public const STATUS_EXPIRED = 'expired';
/**
* @event DefineEntryTypesEvent The event that is triggered when defining the available entry types for the entry
* @see getAvailableEntryTypes()
* @since 3.6.0
*/
public const EVENT_DEFINE_ENTRY_TYPES = 'defineEntryTypes';
/**
* @event ElementCriteriaEvent The event that is triggered when defining the parent selection criteria.
* @see _parentOptionCriteria()
* @since 4.4.0
*/
public const EVENT_DEFINE_PARENT_SELECTION_CRITERIA = 'defineParentSelectionCriteria';
/**
* @inheritdoc
*/
public static function displayName(): string
{
return Craft::t('app', 'Entry');
}
/**
* @inheritdoc
*/
public static function lowerDisplayName(): string
{
return Craft::t('app', 'entry');
}
/**
* @inheritdoc
*/
public static function pluralDisplayName(): string
{
return Craft::t('app', 'Entries');
}
/**
* @inheritdoc
*/
public static function pluralLowerDisplayName(): string
{
return Craft::t('app', 'entries');
}
/**
* @inheritdoc
*/
public static function refHandle(): ?string
{
return 'entry';
}
/**
* @inheritdoc
*/
public static function hasDrafts(): bool
{
return true;
}
/**
* @inheritdoc
*/
public static function trackChanges(): bool
{
return true;
}
/**
* @inheritdoc
*/
public static function hasTitles(): bool
{
return true;
}
/**
* @inheritdoc
*/
public static function hasUris(): bool
{
return true;
}
/**
* @inheritdoc
*/
public static function isLocalized(): bool
{
return true;
}
/**
* @inheritdoc
*/
public static function hasStatuses(): bool
{
return true;
}
/**
* @inheritdoc
*/
public static function statuses(): array
{
return [
self::STATUS_LIVE => Craft::t('app', 'Live'),
self::STATUS_PENDING => Craft::t('app', 'Pending'),
self::STATUS_EXPIRED => Craft::t('app', 'Expired'),
self::STATUS_DISABLED => Craft::t('app', 'Disabled'),
];
}
/**
* @inheritdoc
* @return EntryQuery The newly created [[EntryQuery]] instance.
*/
public static function find(): EntryQuery
{
return new EntryQuery(static::class);
}
/**
* @inheritdoc
* @return EntryCondition
*/
public static function createCondition(): ElementConditionInterface
{
return Craft::createObject(EntryCondition::class, [static::class]);
}
/**
* @inheritdoc
*/
protected static function defineSources(string $context): array
{
if ($context === ElementSources::CONTEXT_INDEX) {
$sections = Craft::$app->getEntries()->getEditableSections();
$editable = true;
} else {
$sections = Craft::$app->getEntries()->getAllSections();
$editable = null;
}
$sectionIds = [];
$singleSectionIds = [];
$sectionsByType = [];
foreach ($sections as $section) {
$sectionIds[] = $section->id;
if ($section->type == Section::TYPE_SINGLE) {
$singleSectionIds[] = $section->id;
} else {
$sectionsByType[$section->type][] = $section;
}
}
$sources = [
[
'key' => '*',
'label' => Craft::t('app', 'All entries'),
'criteria' => [
'sectionId' => $sectionIds,
'editable' => $editable,
],
'defaultSort' => ['postDate', 'desc'],
],
];
if (!empty($singleSectionIds)) {
$sources[] = [
'key' => 'singles',
'label' => Craft::t('app', 'Singles'),
'criteria' => [
'sectionId' => $singleSectionIds,
'editable' => $editable,
],
'defaultSort' => ['title', 'asc'],
];
}
$sectionTypes = [
Section::TYPE_CHANNEL => Craft::t('app', 'Channels'),
Section::TYPE_STRUCTURE => Craft::t('app', 'Structures'),
];
$user = Craft::$app->getUser()->getIdentity();
foreach ($sectionTypes as $type => $heading) {
if (!empty($sectionsByType[$type])) {
$sources[] = ['heading' => $heading];
foreach ($sectionsByType[$type] as $section) {
/** @var Section $section */
$source = [
'key' => 'section:' . $section->uid,
'label' => Craft::t('site', $section->name),
'sites' => $section->getSiteIds(),
'data' => [
'type' => $type,
'handle' => $section->handle,
'section-id' => $section->id,
'entry-type-ids' => array_map(fn(EntryType $entryType) => $entryType->id, $section->getEntryTypes()),
],
'criteria' => [
'sectionId' => $section->id,
'editable' => $editable,
],
];
if ($type == Section::TYPE_STRUCTURE) {
$source['defaultSort'] = ['structure', 'asc'];
$source['structureId'] = $section->structureId;
$source['structureEditable'] = $user && $user->can("saveEntries:$section->uid");
} else {
$source['defaultSort'] = ['postDate', 'desc'];
}
$sources[] = $source;
}
}
}
return $sources;
}
/**
* @inheritdoc
*/
public static function modifyCustomSource(array $config): array
{
if (empty($config['condition']['conditionRules'])) {
return $config;
}
// see if it's limited to one section
/** @var SectionConditionRule|null $sectionRule */
$sectionRule = ArrayHelper::firstWhere(
$config['condition']['conditionRules'],
fn(array $rule) => $rule['class'] === SectionConditionRule::class,
);
$sectionOptions = $sectionRule['values'] ?? null;
if ($sectionOptions && count($sectionOptions) === 1) {
$section = Craft::$app->getEntries()->getSectionByUid(reset($sectionOptions));
if ($section) {
$config['data']['handle'] = $section->handle;
}
}
// see if it specifies any entry types
/** @var TypeConditionRule|null $entryTypeRule */
$entryTypeRule = ArrayHelper::firstWhere(
$config['condition']['conditionRules'],
fn(array $rule) => $rule['class'] === TypeConditionRule::class,
);
$entryTypeOptions = $entryTypeRule['values'] ?? null;
if ($entryTypeOptions) {
$entryType = Craft::$app->getEntries()->getEntryTypeByUid(reset($entryTypeOptions));
if ($entryType) {
$config['data']['entry-type'] = $entryType->handle;
}
}
return $config;
}
/**
* @inheritdoc
*/
protected static function defineFieldLayouts(?string $source): array
{
if ($source === '*') {
$sections = Craft::$app->getEntries()->getAllSections();
} elseif ($source === 'singles') {
$sections = Craft::$app->getEntries()->getSectionsByType(Section::TYPE_SINGLE);
} elseif ($source !== null && preg_match('/^section:(.+)$/', $source, $matches)) {
$sections = array_filter([
Craft::$app->getEntries()->getSectionByUid($matches[1]),
]);
}
if (isset($sections)) {
$entryTypes = array_values(array_unique(array_merge(
...array_map(fn(Section $section) => $section->getEntryTypes(), $sections),
)));
} else {
// get all entry types, including those which may only be used by Matrix fields
$entryTypes = Craft::$app->getEntries()->getAllEntryTypes();
}
return array_map(fn(EntryType $entryType) => $entryType->getFieldLayout(), $entryTypes);
}
/**
* @inheritdoc
*/
protected static function defineActions(string $source): array
{
// Get the selected site
$controller = Craft::$app->controller;
if ($controller instanceof ElementIndexesController) {
/** @var ElementQuery $elementQuery */
$elementQuery = $controller->getElementQuery();
} else {
$elementQuery = null;
}
$site = $elementQuery && $elementQuery->siteId
? Craft::$app->getSites()->getSiteById($elementQuery->siteId)
: Craft::$app->getSites()->getCurrentSite();
// Get the section we need to check permissions on
if (preg_match('/^section:(\d+)$/', $source, $matches)) {
$section = Craft::$app->getEntries()->getSectionById((int)$matches[1]);
} elseif (preg_match('/^section:(.+)$/', $source, $matches)) {
$section = Craft::$app->getEntries()->getSectionByUid($matches[1]);
} else {
$section = null;
}
// Now figure out what we can do with these
$actions = [];
$elementsService = Craft::$app->getElements();
if ($section) {
$user = Craft::$app->getUser()->getIdentity();
if (
$section->type == Section::TYPE_STRUCTURE &&
$user->can('createEntries:' . $section->uid)
) {
$newEntryUrl = 'entries/' . $section->handle . '/new';
if (Craft::$app->getIsMultiSite()) {
$newEntryUrl .= '?site=' . $site->handle;
}
$actions[] = $elementsService->createAction([
'type' => NewSiblingBefore::class,
'newSiblingUrl' => $newEntryUrl,
]);
$actions[] = $elementsService->createAction([
'type' => NewSiblingAfter::class,
'newSiblingUrl' => $newEntryUrl,
]);
if ($section->maxLevels != 1) {
$actions[] = $elementsService->createAction([
'type' => NewChild::class,
'maxLevels' => $section->maxLevels,
'newChildUrl' => $newEntryUrl,
]);
}
}
if (
$user->can("createEntries:$section->uid") &&
$user->can("saveEntries:$section->uid")
) {
// Duplicate
$actions[] = Duplicate::class;
if ($section->type === Section::TYPE_STRUCTURE && $section->maxLevels != 1) {
$actions[] = [
'type' => Duplicate::class,
'deep' => true,
];
}
// Copy
$actions[] = Copy::class;
// Move to section
$actions[] = MoveToSection::class;
}
// Delete?
$actions[] = Delete::class;
if ($user->can("deleteEntries:$section->uid")) {
if (
$section->type === Section::TYPE_STRUCTURE &&
$section->maxLevels != 1 &&
$user->can("deletePeerEntries:$section->uid")
) {
$actions[] = [
'type' => Delete::class,
'withDescendants' => true,
];
}
}
} else {
$actions[] = Copy::class;
}
if (
(
$section &&
$section->propagationMethod === PropagationMethod::Custom &&
$section->getHasMultiSiteEntries() &&
$user->can("deleteEntriesForSite:$section->uid")
) ||
(
!$section &&
str_starts_with($source, 'custom:') &&
Craft::$app->getIsMultiSite() &&
Collection::make(Craft::$app->getEntries()->getEditableSections())
->contains(fn(Section $section) => $section->propagationMethod === PropagationMethod::Custom)
)
) {
$actions[] = DeleteForSite::class;
}
// Restore
$actions[] = Restore::class;
return $actions;
}
/**
* @inheritdoc
*/
protected static function includeSetStatusAction(): bool
{
return true;
}
/**
* @inheritdoc
*/
public static function baseBulkDuplicateAttributes(): array
{
return [
...parent::baseBulkDuplicateAttributes(),
'sectionId' => null,
];
}
/**
* @inheritdoc
*/
protected static function defineSortOptions(): array
{
return [
'title' => Craft::t('app', 'Title'),
'slug' => Craft::t('app', 'Slug'),
'uri' => Craft::t('app', 'URI'),
[
'label' => Craft::t('app', 'Section'),
'orderBy' => function(int $dir, Connection $db) {
$sectionIds = Collection::make(Craft::$app->getEntries()->getAllSections())
->sort(fn(Section $a, Section $b) => $dir === SORT_ASC
? $a->name <=> $b->name
: $b->name <=> $a->name)
->map(fn(Section $section) => $section->id)
->all();
return new FixedOrderExpression('entries.sectionId', $sectionIds, $db);
},
'attribute' => 'section',
],
[
'label' => Craft::t('app', 'Entry Type'),
'orderBy' => function(int $dir, Connection $db) {
$entryTypeIds = Collection::make(Craft::$app->getEntries()->getAllEntryTypes())
->sort(fn(EntryType $a, EntryType $b) => $dir === SORT_ASC
? $a->name <=> $b->name
: $b->name <=> $a->name)
->map(fn(EntryType $type) => $type->id)
->all();
return new FixedOrderExpression('entries.typeId', $entryTypeIds, $db);
},
'attribute' => 'type',
],
[
'label' => Craft::t('app', 'Post Date'),
'orderBy' => function(int $dir) {
if ($dir === SORT_ASC) {
if (Craft::$app->getDb()->getIsMysql()) {
return new Expression('[[postDate]] IS NOT NULL DESC, [[postDate]] ASC');
} else {
return new Expression('[[postDate]] ASC NULLS LAST');
}
}
if (Craft::$app->getDb()->getIsMysql()) {
return new Expression('[[postDate]] IS NULL DESC, [[postDate]] DESC');
} else {
return new Expression('[[postDate]] DESC NULLS FIRST');
}
},
'attribute' => 'postDate',
'defaultDir' => 'desc',
],
[
'label' => Craft::t('app', 'Expiry Date'),
'orderBy' => 'expiryDate',
'defaultDir' => 'desc',
],
[
'label' => Craft::t('app', 'Date Created'),
'orderBy' => 'dateCreated',
'defaultDir' => 'desc',
],
[
'label' => Craft::t('app', 'Date Updated'),
'orderBy' => 'dateUpdated',
'defaultDir' => 'desc',
],
];
}
/**
* @inheritdoc
*/
protected static function defineTableAttributes(): array
{
$attributes = array_merge(parent::defineTableAttributes(), [
'section' => ['label' => Craft::t('app', 'Section')],
'type' => ['label' => Craft::t('app', 'Entry Type')],
'authors' => ['label' => Craft::t('app', 'Authors')],
'ancestors' => ['label' => Craft::t('app', 'Ancestors')],
'parent' => ['label' => Craft::t('app', 'Parent')],
'postDate' => ['label' => Craft::t('app', 'Post Date')],
'expiryDate' => ['label' => Craft::t('app', 'Expiry Date')],
'revisionNotes' => ['label' => Craft::t('app', 'Revision Notes')],
'revisionCreator' => ['label' => Craft::t('app', 'Last Edited By')],
'drafts' => ['label' => Craft::t('app', 'Drafts')],
]);
// Hide Author & Last Edited By from Craft Solo
if (Craft::$app->edition === CmsEdition::Solo) {
unset($attributes['authors'], $attributes['revisionCreator']);
}
return $attributes;
}
/**
* @inheritdoc
*/
protected static function defineDefaultTableAttributes(string $source): array
{
$attributes = ['status'];
if ($source === '*') {
$attributes[] = 'section';
}
if ($source !== 'singles') {
$attributes[] = 'postDate';
$attributes[] = 'expiryDate';
$attributes[] = 'authors';
}
$attributes[] = 'link';
return $attributes;
}
/**
* @inheritdoc
*/
protected static function defineCardAttributes(): array
{
$currentUser = Craft::$app->getUser()->getIdentity();
$attributes = array_merge(parent::defineCardAttributes(), [
'section' => [
'label' => Craft::t('app', 'Section'),
'placeholder' => fn() => Craft::t('app', 'Section'),
],
'type' => [
'label' => Craft::t('app', 'Entry Type'),
'placeholder' => fn() => Craft::t('app', 'Entry Type'),
],
'authors' => [
'label' => Craft::t('app', 'Authors'),
'placeholder' => fn() => $currentUser ? Cp::elementChipHtml($currentUser) : '',
],
'parent' => [
'label' => Craft::t('app', 'Parent'),
'placeholder' => fn() => Html::tag(
'span',
Craft::t('app', 'Parent {type} Title', ['type' => self::displayName()]),
['class' => 'card-placeholder'],
),
],
'postDate' => [
'label' => Craft::t('app', 'Post Date'),
'placeholder' => fn() => (new \DateTime())->sub(new \DateInterval('P15D')),
],
'expiryDate' => [
'label' => Craft::t('app', 'Expiry Date'),
'placeholder' => fn() => (new \DateTime())->add(new \DateInterval('P15D')),
],
'revisionNotes' => [
'label' => Craft::t('app', 'Revision Notes'),
'placeholder' => fn() => Craft::t('app', 'Revision Notes'),
],
'revisionCreator' => [
'label' => Craft::t('app', 'Last Edited By'),
'placeholder' => fn() => $currentUser ? Cp::elementChipHtml($currentUser) : '',
],
'drafts' => [
'label' => Craft::t('app', 'Drafts'),
'placeholder' => fn() => Html::tag(
'span',
Craft::t('app', 'Draft {num}', ['num' => 1]),
['class' => 'card-placeholder'],
),
],
]);
// Hide Author & Last Edited By from Craft Solo
if (Craft::$app->edition === CmsEdition::Solo) {
unset($attributes['authors'], $attributes['revisionCreator']);
}
return $attributes;
}
/**
* @inheritdoc
*/
public static function attributePreviewHtml(array $attribute): mixed
{
return match ($attribute['value']) {
'authors', 'parent', 'revisionCreator', 'drafts' => $attribute['placeholder'],
default => parent::attributePreviewHtml($attribute),
};
}
/**
* @inheritdoc
*/
public static function eagerLoadingMap(array $sourceElements, string $handle): array|null|false
{
switch ($handle) {
case 'author':
case 'authors':
$entryIds = array_map(fn(ElementInterface $entry) => $entry->id, $sourceElements);
$map = (new Query())
->select([
'source' => 'entryId',
'target' => 'authorId',
])
->from(Table::ENTRIES_AUTHORS)
->where(['entryId' => $entryIds])
->orderBy(['sortOrder' => SORT_ASC])
->all();
return [
'elementType' => User::class,
'map' => $map,
'criteria' => [
'status' => null,
],
];
default:
return self::traitEagerLoadingMap($sourceElements, $handle);
}
}
/**
* Returns the GraphQL type name that entries should use, based on their entry type.
*
* @since 5.0.0
*/
public static function gqlTypeName(EntryType $entryType): string
{
// Don't use override data
$entryType = $entryType->original ?? $entryType;
return sprintf('%s_Entry', $entryType->handle);
}
/**
* @inheritdoc
*/
public static function baseGqlType(): Type
{
return EntryInterface::getType();
}
/**
* @inheritdoc
*/
public static function gqlScopesByContext(mixed $context): array
{
/** @var Section $section */
$section = $context['section'];
return [
"sections.$section->uid",
];
}
/**
* @inheritdoc
*/
protected static function prepElementQueryForTableAttribute(ElementQueryInterface $elementQuery, string $attribute): void
{
switch ($attribute) {
case 'authors':
$elementQuery->andWith(['authors', ['status' => null]]);
break;
default:
parent::prepElementQueryForTableAttribute($elementQuery, $attribute);
}
}
/**
* @var int|null Section ID
* ---
* ```php
* echo $entry->sectionId;
* ```
* ```twig
* {{ entry.sectionId }}
* ```
*/
public ?int $sectionId = null;
/**
* @var bool Collapsed
* @since 5.0.0
*/
public bool $collapsed = false;
/**
* @var DateTime|null Post date
* ---
* ```php
* echo Craft::$app->formatter->asDate($entry->postDate, 'short');
* ```
* ```twig
* {{ entry.postDate|date('short') }}
* ```
*/
public ?DateTime $postDate = null;
/**
* @var DateTime|null Expiry date
* ---
* ```php
* if ($entry->expiryDate) {
* echo Craft::$app->formatter->asDate($entry->expiryDate, 'short');
* }
* ```
* ```twig
* {% if entry.expiryDate %}
* {{ entry.expiryDate|date('short') }}
* {% endif %}
* ```
*/
public ?DateTime $expiryDate = null;
/**
* @var self::STATUS_*|null The entry’s previous status, if it had one
*/
public ?string $oldStatus = null;
/**
* @var self::STATUS_LIVE|self::STATUS_PENDING|self::STATUS_EXPIRED
*/
private string $status;
/**
* @var bool Whether the entry was deleted along with its entry type
* @see beforeDelete()
* @internal
*/
public bool $deletedWithEntryType = false;
/**
* @var bool Whether the entry was deleted along with its section
* @see beforeDelete()
* @internal
*/
public bool $deletedWithSection = false;
/**
* @var bool Whether to force-place the entry within its structure.
* @since 5.7.0
*/
public bool $placeInStructure = false;
/**
* @var int[] Entry author IDs
* @see getAuthorIds()
* @see setAuthorIds()
*/
private array $_authorIds;
/**
* @var int[] Original entry author IDs
* @see setAuthorIds()
*/
private array $_oldAuthorIds;
/**
* @var User[]|null Entry authors
* @see getAuthors()
* @see setAuthors()
*/
private ?array $_authors = null;
/**
* @var int|null Type ID
* @see getType()
*/
private ?int $_typeId = null;
/**
* @var int|null
*/
private ?int $_oldTypeId = null;
/**
* @var EntryType|null Entry Type
* @see getType()
*/
private ?EntryType $_type = null;
/**
* @inheritdoc
* @since 3.5.0
*/
public function init(): void
{
parent::init();
if (isset($this->id)) {
$this->oldStatus = $this->getStatus();
}
$this->_oldTypeId = $this->_typeId;
}
/**
* @inheritdoc
*/
public function attributes(): array
{
$names = array_flip($this->traitAttributes());
unset($names['deletedWithEntryType']);
unset($names['deletedWithSection']);
$names['authorId'] = true;
$names['authorIds'] = true;
$names['typeId'] = true;
return array_keys($names);
}
/**
* @inheritdoc
*/
public function extraFields(): array
{
$names = $this->traitExtraFields();
$names[] = 'author';
$names[] = 'authors';
$names[] = 'section';
$names[] = 'type';
return $names;
}
/**
* @inheritdoc
*/
public function attributeLabels(): array
{
return array_merge(parent::attributeLabels(), [
'authorIds' => Craft::t('app', '{max, plural, =1{Author} other {Authors}}', [
'max' => $this->getSection()->maxAuthors ?? PHP_INT_MAX,
]),
'postDate' => Craft::t('app', 'Post Date'),
'expiryDate' => Craft::t('app', 'Expiry Date'),
]);
}
/**
* @inheritdoc
*/
protected function defineRules(): array
{
$rules = parent::defineRules();
$rules[] = [['sectionId', 'fieldId', 'ownerId', 'primaryOwnerId', 'typeId', 'sortOrder'], 'number', 'integerOnly' => true];
$rules[] = [['authorIds'], 'each', 'rule' => ['number', 'integerOnly' => true]];
$rules[] = [['placeInStructure'], 'safe'];
$rules[] = [
['sectionId'],
'required',
'when' => fn() => !isset($this->fieldId),