C:\xampp\htdocs\landing\wp-content\plugins\wordpress-seo\src\helpers\twitter\image-helper.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php

namespace Yoast\WP\SEO\Helpers\Twitter;

use 
Yoast\WP\SEO\Helpers\Image_Helper as Base_Image_Helper;

/**
 * A helper object for Twitter images.
 */
class Image_Helper {

    
/**
     * The base image helper.
     *
     * @var Base_Image_Helper
     */
    
private $image;

    
/**
     * Image_Helper constructor.
     *
     * @codeCoverageIgnore
     *
     * @param Base_Image_Helper $image The image helper.
     */
    
public function __constructBase_Image_Helper $image ) {
        
$this->image $image;
    }

    
/**
     * The image size to use for Twitter.
     *
     * @return string Image size string.
     */
    
public function get_image_size() {
        
/**
         * Filter: 'wpseo_twitter_image_size' - Allow changing the Twitter Card image size.
         *
         * @api string $featured_img Image size string.
         */
        
return (string) \apply_filters'wpseo_twitter_image_size''full' );
    }

    
/**
     * Retrieves an image url by its id.
     *
     * @codeCoverageIgnore It is a wrapper method.
     *
     * @param int $image_id The image id.
     *
     * @return string The image url.
     */
    
public function get_by_id$image_id ) {
        return 
$this->image->get_attachment_image_source$image_id$this->get_image_size() );
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586