コード例 #1
0
ファイル: ShippingMethod.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return form attributes
  *
  * @return array
  */
 protected function getFormAttributes()
 {
     $list = parent::getFormAttributes();
     $deferred = $this->shouldDeferLoad();
     $list['data-deferred'] = $deferred ? 'true' : 'false';
     return $list;
 }