Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Vertical.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Vertical extends \Magento\Framework\App\Config\Value
14 {
24  public function beforeSave()
25  {
26  if (empty($this->getValue())) {
27  throw new LocalizedException(__('Please select an industry.'));
28  }
29 
30  return $this;
31  }
32 }
__()
Definition: __.php:13