PluginProbe
Assistant – Every Day Productivity Apps / 0.3.1
Assistant – Every Day Productivity Apps v0.3.1
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 0.3.1, at backend/src/Data/Transformers/LabelsTransformer.php

25 lines 484 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 return [
18 'id' => $term->term_id,
19 'label' => $term->name,
20 'slug' => $term->slug,
21 'color' => get_term_meta( $term->term_id, $this->labels::FL_ASST_NOTATION_COLOR, true ),
22 ];
23 }
24 }
25