C:\xampp\htdocs\landing\wp-content\plugins\imagify\classes\Bulk\BulkInterface.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
namespace Imagify\Bulk;

defined'ABSPATH' ) || die( 'Cheatin’ uh?' );

/**
 * Interface to use for bulk.
 *
 * @since  1.9
 * @author Grégory Viguier
 */
interface BulkInterface {

    
/**
     * Get all unoptimized media ids.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @param  int $optimization_level The optimization level.
     * @return array                   A list of unoptimized media. Array keys are media IDs prefixed with an underscore character, array values are the main file’s URL.
     */
    
public function get_unoptimized_media_ids$optimization_level );

    
/**
     * Get ids of all optimized media without webp versions.
     *
     * @since  1.9
     * @since  1.9.5 The method doesn't return the IDs directly anymore.
     * @access public
     * @author Grégory Viguier
     *
     * @return array {
     *     @type array $ids    A list of media IDs.
     *     @type array $errors {
     *         @type array $no_file_path A list of media IDs.
     *         @type array $no_backup    A list of media IDs.
     *     }
     * }
     */
    
public function get_optimized_media_ids_without_webp();

    
/**
     * Tell if there are optimized media without webp versions.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return int The number of media.
     */
    
public function has_optimized_media_without_webp();

    
/**
     * Get the context data.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return array {
     *     The formated data.
     *     The array keys corresponds to the table cell classes: "imagify-cell-{key}".
     *
     *     @type string $count-optimized Number of media optimized.
     *     @type string $count-errors    Number of media having an optimization error, with a link to the page listing the optimization errors.
     *     @type string $optimized-size  Optimized filesize.
     *     @type string $original-size   Original filesize.
     * }
     */
    
public function get_context_data();
}
x

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