ValueFormat.php 214 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php namespace ACA\JetEngine\Field; interface ValueFormat { const FORMAT_ID = 'id'; const FORMAT_URL = 'url'; const FORMAT_BOTH = 'both'; /** * @return string */ public function get_value_format(); }