src/Gallery.php 1 location
|
@@ 21-27 (lines=7) @@
|
| 18 |
|
|
| 19 |
|
protected $args; |
| 20 |
|
|
| 21 |
|
public function __construct( Image $image, PostMeta $postmeta, Theme $theme, Utility $utility ) |
| 22 |
|
{ |
| 23 |
|
$this->image = $image; |
| 24 |
|
$this->postmeta = $postmeta; |
| 25 |
|
$this->theme = $theme; |
| 26 |
|
$this->utility = $utility; |
| 27 |
|
} |
| 28 |
|
|
| 29 |
|
/** |
| 30 |
|
* @return WP_Query |
src/Helpers/Render.php 1 location
|
@@ 17-23 (lines=7) @@
|
| 14 |
|
public $theme; |
| 15 |
|
public $utility; |
| 16 |
|
|
| 17 |
|
public function __construct( Media $media, PostMeta $postmeta, Theme $theme, Utility $utility ) |
| 18 |
|
{ |
| 19 |
|
$this->media = $media; |
| 20 |
|
$this->postmeta = $postmeta; |
| 21 |
|
$this->theme = $theme; |
| 22 |
|
$this->utility = $utility; |
| 23 |
|
} |
| 24 |
|
|
| 25 |
|
public function blockquote( $metaKey = false, array $attributes = [] ) |
| 26 |
|
{ |