クラス
Factory
ConfirmPageLogin factoryソース ソース
ファイル: src/Views/ConfirmPageLogin/Factory.php
class Factory
{
/**
* Returns `ConfirmPageLogin` instance for the given theme
*
* @author Evan D Shaw <evandanielshaw@gmail.com>
* @param AmazonPay $module
* @return ConfirmPageLogin
*/
public function getInstance(AmazonPay $module) {
$instance = null;
$theme = AmazonPay::getThemeConfig()['name'];
switch ($theme) {
case 'beldad':
$instance = new Themes\Beldad($module);
break;
case 'voll':
$instance = new Themes\Voll($module);
break;
default:
$instance = new ConfirmPageLogin($module);
break;
}
return $instance;
}
}
- getInstance — Returns `ConfirmPageLogin` instance for the given theme