✏️ 正在编辑: Layout.php
路径:
/home/bpioifn/www/pigmentse/modules/clearpay/src/Layout.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * This file is part of the official Afterpay module for PrestaShop. * * @author Afterpay <integrations@afterpay.com> * @copyright 2020 Afterpay * @license Apache License 2.0 */ namespace Afterpay\Prestashop; use \Tools; class Layout { public static function isMobile($context) { if (!method_exists($context, 'isMobile')) { return false; } return $context->isMobile(); } public static function harveyBalls($isMobile) { return $isMobile ? Tools::strtolower('two-by-two') : Tools::strtolower('four-by-one'); } }
💾 保存文件
← 返回文件管理器