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
Rss.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * @since 2.0 |
| 9 | */ |
| 10 | class AC_Column_Link_Rss extends AC_Column { |
| 11 | |
| 12 | public function __construct() { |
| 13 | $this->set_type( 'column-rss' ); |
| 14 | $this->set_label( __( 'Rss', 'codepress-admin-columns' ) ); |
| 15 | } |
| 16 | |
| 17 | public function get_value( $id ) { |
| 18 | $bookmark = get_bookmark( $id ); |
| 19 | |
| 20 | return ac_helper()->string->shorten_url( $bookmark->link_rss ); |
| 21 | } |
| 22 | |
| 23 | } |
| 24 |