1 | <?php |
||
24 | abstract class AbstractImageTwigExtension extends AbstractBootstrapTwigExtension { |
||
25 | |||
26 | /** |
||
27 | * Constructor. |
||
28 | */ |
||
29 | protected function __construct() { |
||
32 | |||
33 | /** |
||
34 | * Displays a Bootstrap image. |
||
35 | * |
||
36 | * @param string $src The image source |
||
37 | * @param string $alt The image alternative. |
||
38 | * @param string $width The image width. |
||
39 | * @param string $height The image height. |
||
40 | * @param string $class The image class. |
||
41 | * @return string Returns the Bootstrap image. |
||
42 | */ |
||
43 | protected function bootstrapImage($src, $alt, $width, $height, $class) { |
||
60 | |||
61 | } |
||
62 |