Link.php 255 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <?php namespace ACA\ACF\Export\Model; use ACA; use ACP; class Link extends ACP\Export\Model { public function get_value( $id ) { $link = $this->column->get_raw_value( $id ); if ( empty( $link ) ) { return ''; } return $link['url']; } }