| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function get_data() { |
||
| 27 | |||
| 28 | return array( |
||
| 29 | 'tagId' => $this->term->term_id, |
||
| 30 | 'tagName' => $this->term->name, |
||
| 31 | 'tagDescription' => $this->term->description, |
||
| 32 | 'tagLink' => get_edit_tag_link( $this->term->term_id, 'post_tag' ), |
||
| 33 | 'tagPostCount' => $this->term->count, |
||
| 34 | 'entities' => $this->entities, |
||
| 35 | ); |
||
| 36 | } |
||
| 37 | } |