PluginProbe
Assistant – Every Day Productivity Apps / trunk
Assistant – Every Day Productivity Apps vtrunk
1.5.5 trunk 0.1.0 0.2.0 0.2.1 0.2.2 0.3.0 0.3.1 0.4 0.4.1 0.4.2 0.5.0 0.5.1 0.6.0 0.7.0 0.7.0.2 0.7.0.3 0.7.0.4 0.7.0.5 0.7.0.6 0.7.0.7 0.7.0.8 0.7.0.9 0.7.1 1.0 All 71 releases
assistant / backend / src / Data / Transformers / LabelsTransformer.php

LabelsTransformer.php in Assistant – Every Day Productivity Apps trunk, at backend/src/Data/Transformers/LabelsTransformer.php

26 lines 530 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 namespace FL\Assistant\Data\Transformers;
5
6 use FL\Assistant\Data\Repository\LabelsRepository;
7
8 class LabelsTransformer {
9
10 protected $labels;
11
12 public function __construct( LabelsRepository $labels ) {
13 $this->labels = $labels;
14 }
15
16 public function __invoke( \WP_Term $term ) {
17 $labels = $this->labels;
18 return [
19 'id' => $term->term_id,
20 'label' => $term->name,
21 'slug' => $term->slug,
22 'color' => get_term_meta( $term->term_id, $labels::FL_ASST_NOTATION_COLOR, true ),
23 ];
24 }
25 }
26