| 1 | <?php |
||
| 24 | final class SampleOutputCodeTwigExtension extends AbstractCodeTwigExtension { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Service name. |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | const SERVICE_NAME = "webeweb.bundle.bootstrapbundle.twig.extension.code.sampleoutput"; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Constructor. |
||
| 35 | */ |
||
| 36 | public function __construct() { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Displays a Bootstrap inline. |
||
| 42 | * |
||
| 43 | * @param array $args The arguments. |
||
| 44 | * @return string Returns the Bootstrap inline. |
||
| 45 | */ |
||
| 46 | public function bootstrapSampleOutputFunction(array $args = []) { |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Get the Twig functions. |
||
| 52 | * |
||
| 53 | * @return array Returns the Twig functions. |
||
| 54 | */ |
||
| 55 | public function getFunctions() { |
||
| 60 | |||
| 61 | } |
||
| 62 |