Created
December 15, 2016 13:39
-
-
Save mortenson/30e2a95e8c1af9a6dbc3f980e480b210 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$build['your_key'] = [ | |
'#type' => 'link', | |
'#title' => $this->t('My button'), | |
'#url' => Url::fromRoute('your_route'), | |
'#attributes' => [ | |
'class' => ['button', 'use-ajax'], | |
'data-dialog-type' => 'modal', | |
'data-dialog-options' => json_encode([ | |
'height' => '500', | |
'width' => '70%', | |
'title' => $this->t('My form'), | |
]), | |
], | |
'#limit_validation_errors' => [], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment