BeforeAfter
5 years ago
Pro
5 years ago
ActionIcons.php
5 years ago
AttachmentDisplay.php
5 years ago
BeforeAfter.php
5 years ago
CharacterLimit.php
5 years ago
Comment.php
5 years ago
CommentCount.php
5 years ago
CommentLink.php
5 years ago
CustomField.php
5 years ago
CustomFieldType.php
5 years ago
Date.php
5 years ago
DateTimeFormat.php
5 years ago
ExifData.php
5 years ago
Image.php
5 years ago
Images.php
5 years ago
Label.php
5 years ago
LinkLabel.php
5 years ago
LinkToMenu.php
5 years ago
MediaLink.php
5 years ago
Message.php
5 years ago
Meta.php
5 years ago
MissingImageSize.php
5 years ago
NumberFormat.php
5 years ago
NumberOfItems.php
5 years ago
Password.php
5 years ago
PathScope.php
5 years ago
Post.php
5 years ago
PostFormatIcon.php
5 years ago
PostLink.php
5 years ago
PostStatus.php
5 years ago
PostType.php
5 years ago
Pro.php
5 years ago
Separator.php
5 years ago
StatusIcon.php
5 years ago
StringLimit.php
5 years ago
Taxonomy.php
5 years ago
Term.php
5 years ago
TermLink.php
5 years ago
Time.php
5 years ago
Toggle.php
5 years ago
Type.php
5 years ago
User.php
5 years ago
UserLink.php
5 years ago
Width.php
5 years ago
WordLimit.php
5 years ago
WordsPerMinute.php
5 years ago
UserLink.php
108 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Settings\Column; |
| 4 | |
| 5 | use AC\Settings; |
| 6 | use AC\View; |
| 7 | |
| 8 | class UserLink extends Settings\Column |
| 9 | implements Settings\FormatValue { |
| 10 | |
| 11 | const NAME = 'user_link_to'; |
| 12 | |
| 13 | const PROPERTY_EDIT_USER = 'edit_user'; |
| 14 | const PROPERTY_VIEW_POSTS = 'view_user_posts'; |
| 15 | const PROPERTY_VIEW_AUTHOR = 'view_author'; |
| 16 | const PROPERTY_EMAIL = 'email_user'; |
| 17 | |
| 18 | /** |
| 19 | * @var string |
| 20 | */ |
| 21 | protected $user_link_to; |
| 22 | |
| 23 | protected function define_options() { |
| 24 | return [ |
| 25 | self::NAME => self::PROPERTY_EDIT_USER, |
| 26 | ]; |
| 27 | } |
| 28 | |
| 29 | public function format( $value, $user_id ) { |
| 30 | $link = false; |
| 31 | |
| 32 | switch ( $this->get_user_link_to() ) { |
| 33 | case self::PROPERTY_EDIT_USER : |
| 34 | $link = get_edit_user_link( $user_id ); |
| 35 | |
| 36 | break; |
| 37 | case self::PROPERTY_VIEW_POSTS : |
| 38 | $link = add_query_arg( [ |
| 39 | 'post_type' => $this->column->get_post_type(), |
| 40 | 'author' => $user_id, |
| 41 | ], 'edit.php' ); |
| 42 | |
| 43 | break; |
| 44 | case self::PROPERTY_VIEW_AUTHOR : |
| 45 | $link = get_author_posts_url( $user_id ); |
| 46 | |
| 47 | break; |
| 48 | case self::PROPERTY_EMAIL : |
| 49 | if ( $email = get_the_author_meta( 'email', $user_id ) ) { |
| 50 | $link = 'mailto:' . $email; |
| 51 | } |
| 52 | |
| 53 | break; |
| 54 | } |
| 55 | |
| 56 | if ( $link ) { |
| 57 | $value = ac_helper()->html->link( $link, $value ); |
| 58 | } |
| 59 | |
| 60 | return $value; |
| 61 | } |
| 62 | |
| 63 | public function create_view() { |
| 64 | $select = $this->create_element( 'select' )->set_options( $this->get_display_options() ); |
| 65 | |
| 66 | $view = new View( [ |
| 67 | 'label' => __( 'Link To', 'codepress-admin-columns' ), |
| 68 | 'setting' => $select, |
| 69 | ] ); |
| 70 | |
| 71 | return $view; |
| 72 | } |
| 73 | |
| 74 | protected function get_display_options() { |
| 75 | $options = [ |
| 76 | self::PROPERTY_EDIT_USER => __( 'Edit User Profile', 'codepress-admin-columns' ), |
| 77 | self::PROPERTY_EMAIL => __( 'User Email', 'codepress-admin-columns' ), |
| 78 | self::PROPERTY_VIEW_POSTS => __( 'View User Posts', 'codepress-admin-columns' ), |
| 79 | self::PROPERTY_VIEW_AUTHOR => __( 'View Public Author Page', 'codepress-admin-columns' ), |
| 80 | ]; |
| 81 | |
| 82 | // resort for possible translations |
| 83 | natcasesort( $options ); |
| 84 | |
| 85 | $options = array_merge( [ '' => __( 'None' ) ], $options ); |
| 86 | |
| 87 | return $options; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * @return string |
| 92 | */ |
| 93 | public function get_user_link_to() { |
| 94 | return $this->user_link_to; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * @param string $user_link_to |
| 99 | * |
| 100 | * @return bool |
| 101 | */ |
| 102 | public function set_user_link_to( $user_link_to ) { |
| 103 | $this->user_link_to = $user_link_to; |
| 104 | |
| 105 | return true; |
| 106 | } |
| 107 | |
| 108 | } |