vlsuite-1.0.x-dev/modules/vlsuite_layout/src/Plugin/Layout/VLSuiteLayoutThreeCols.php
modules/vlsuite_layout/src/Plugin/Layout/VLSuiteLayoutThreeCols.php
<?php
namespace Drupal\vlsuite_layout\Plugin\Layout;
/**
* Configurable three column layout plugin class.
*
* @internal
* Plugin classes are internal.
*/
class VLSuiteLayoutThreeCols extends VLSuiteLayoutBase {
/**
* {@inheritdoc}
*/
protected function getWidthOptions() {
return [
'25-50-25' => '25%/50%/25%',
'33-33-33' => '33%/34%/33%',
'25-25-50' => '25%/25%/50%',
'50-25-25' => '50%/25%/25%',
];
}
/**
* {@inheritdoc}
*/
protected function getDefaultWidth() {
return '33-33-33';
}
}
