Checkbox.php 249 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php namespace ACA\MetaBox\Value\Formatter; use ACA\MetaBox\Value\Formatter; class Checkbox implements Formatter { public function format( $value, $id = null ) { return $value ? ac_helper()->icon->yes() : ac_helper()->icon->no(); } }