LastName.php
601 Bytes
<?php
namespace AC\Column\User;
use AC\Column;
/**
* @since 2.0
*/
class LastName extends Column\Meta {
public function __construct() {
$this->set_type( 'column-last_name' );
$this->set_label( __( 'Last Name', 'codepress-admin-columns' ) );
}
public function get_meta_key() {
return 'last_name';
}
public function get_value( $user_id ) {
$value = $this->get_raw_value( $user_id );
if ( ! $value ) {
return $this->get_empty_char();
}
return $value;
}
public function get_raw_value( $user_id ) {
return $this->get_meta_value( $user_id, $this->get_meta_key() );
}
}