mdrop_suite-1.0.0-alpha1/modules/mdrop_suite_layout/src/Plugin/Layout/MdropSuiteLayoutFourCols.php
modules/mdrop_suite_layout/src/Plugin/Layout/MdropSuiteLayoutFourCols.php
<?php
namespace Drupal\mdrop_suite_layout\Plugin\Layout;
/**
* Configurable four column layout plugin class.
*/
class MdropSuiteLayoutFourCols extends MdropSuiteLayoutBase {
/**
* {@inheritdoc}
*/
protected function getWidthOptions() {
return [
'3-3-3-3' => '25%/25%/25%/25%',
];
}
/**
* {@inheritdoc}
*/
protected function getDefaultWidth() {
return '3-3-3-3';
}
}
