| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function json() { |
||
| 43 | |||
| 44 | $array = wp_array_slice_assoc( (array) $this, array( |
||
| 45 | 'id', |
||
| 46 | 'description', |
||
| 47 | 'priority', |
||
| 48 | 'type', |
||
| 49 | 'panel', |
||
| 50 | )); |
||
| 51 | |||
| 52 | $array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) ); |
||
| 53 | $array['content'] = $this->get_content(); |
||
| 54 | $array['active'] = $this->active(); |
||
| 55 | $array['instanceNumber'] = $this->instance_number; |
||
| 56 | |||
| 57 | return $array; |
||
| 58 | } |
||
| 59 | } |
||
| 60 |