$formats_link=\Drupal::l(t('Configuration > Content authoring > Text formats'),$url);
$text=t('Add the AutoFloat filter to a text format under @formats_link. Move it below other image related filters in the filter processing order.',array(
$text=t('Add the AutoFloat filter to a text format under @formats_link. Move it below other image related filters in the filter processing order.',[
'#title'=>t('Start with the first image on the..'),
'#options'=>array(
0=>t('right'),
1=>t('left (swaps "odd" and "even" classes)'),
),
'#title'=>$this->t('Start with the first image on the..'),
'#options'=>[
0=>$this->t('right'),
1=>$this->t('left (swaps "odd" and "even" classes)'),
],
'#default_value'=>$config->get('start'),
'#description'=>t('Clear the site cache to apply changes.'),
);
$form['autofloat_css']=array(
'#description'=>$this->t('Clear the site cache to apply changes.'),
];
$form['autofloat_css']=[
'#type'=>'checkbox',
'#title'=>t('Use autofloat.css'),
'#title'=>$this->t('Use autofloat.css'),
'#default_value'=>$config->get('css'),
'#description'=>t('Uncheck to take care of the floating and margins yourself in custom css.'),
);
$form['target_settings']=array(
'#description'=>$this->t('Uncheck to take care of the floating and margins yourself in custom css.'),
];
$form['target_settings']=[
'#type'=>'fieldset',
'#title'=>t('Selector/rejector settings'),
'#description'=>t('Images will float unless they have the class "nofloat". Clear the site cache to apply changes. Avoid adding classes manually by defining classes here added by other modules/filters. Use your browser inspector to find them.'),
'#description'=>$this->t('Images will float unless they have the class "nofloat". Clear the site cache to apply changes. Avoid adding classes manually by defining classes here added by other modules/filters. Use your browser inspector to find them.'),
];
$form['target_settings']['autofloat_target']=[
'#type'=>'radios',
'#title'=>t('Elements to target'),
'#options'=>array(
'div'=>t('div'),
'span'=>t('span'),
),
'#title'=>$this->t('Elements to target'),
'#options'=>[
'div'=>$this->t('div'),
'span'=>$this->t('span'),
],
'#default_value'=>$config->get('target'),
'#description'=>t('Clear the site cache to apply changes.'),
'#description'=>$this->t('Clear the site cache to apply changes.'),
];
$form['target_settings']['autofloat_selector']=[
'#type'=>'textfield',
'#title'=>t('Additional selector classes to float'),
'#title'=>$this->t('Additional selector classes to float'),
'#default_value'=>$config->get('selector'),
'#description'=>t('A "selector" with the class "float" will float all containing content, e.g. the image with a caption under it. Optionally define others. Maximum two, divided by a comma. Example: "caption".'),
'#description'=>$this->t('A "selector" with the class "float" will float all containing content, e.g. the image with a caption under it. Optionally define others. Maximum two, divided by a comma. Example: "caption".'),
];
$form['target_settings']['autofloat_rejector']=[
'#type'=>'textfield',
'#title'=>t('Additional div classes to ignore'),
'#title'=>$this->t('Additional div classes to ignore'),
'#default_value'=>$config->get('rejector'),
'#description'=>t('Images nested within any element with the class "nofloat" will NOT float, e.g. a set of thumbnails. Optionally define others. Maximum two, divided by a comma. Example: "flickr-photoset".'),
);
'#description'=>$this->t('Images nested within any element with the class "nofloat" will NOT float, e.g. a set of thumbnails. Optionally define others. Maximum two, divided by a comma. Example: "flickr-photoset".'),