Actions.php
9 years ago
Description.php
9 years ago
ID.php
9 years ago
Image.php
9 years ago
Length.php
9 years ago
Notes.php
9 years ago
Owner.php
9 years ago
Rss.php
9 years ago
Target.php
9 years ago
ID.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * @since 2.0 |
| 9 | */ |
| 10 | class AC_Column_Link_ID extends AC_Column { |
| 11 | |
| 12 | public function __construct() { |
| 13 | $this->set_type( 'column-link_id' ); |
| 14 | $this->set_label( __( 'ID', 'codepress-admin-columns' ) ); |
| 15 | } |
| 16 | |
| 17 | public function get_value( $id ) { |
| 18 | return $id; |
| 19 | } |
| 20 | |
| 21 | } |
| 22 |