12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Captcha image model
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\Captcha\Model\Config;
- class Mode implements \Magento\Framework\Option\ArrayInterface
- {
- /**
- * Get options for captcha mode selection field
- *
- * @return array
- */
- public function toOptionArray()
- {
- return [
- ['label' => __('Always'), 'value' => \Magento\Captcha\Helper\Data::MODE_ALWAYS],
- [
- 'label' => __('After number of attempts to login'),
- 'value' => \Magento\Captcha\Helper\Data::MODE_AFTER_FAIL
- ]
- ];
- }
- }
|