PageRenderTime 48ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/magento/app/code/core/Mage/Oauth/Block/Authorize.php

https://bitbucket.org/jit_bec/shopifine
PHP | 85 lines | 29 code | 4 blank | 52 comment | 3 complexity | c3ba60a07f50d915afd1d0448cecd0bc MD5 | raw file
Possible License(s): LGPL-3.0
  1. <?php
  2. /**
  3. * Magento
  4. *
  5. * NOTICE OF LICENSE
  6. *
  7. * This source file is subject to the Open Software License (OSL 3.0)
  8. * that is bundled with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://opensource.org/licenses/osl-3.0.php
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@magentocommerce.com so we can send you a copy immediately.
  14. *
  15. * DISCLAIMER
  16. *
  17. * Do not edit or add to this file if you wish to upgrade Magento to newer
  18. * versions in the future. If you wish to customize Magento for your
  19. * needs please refer to http://www.magentocommerce.com for more information.
  20. *
  21. * @category Mage
  22. * @package Mage_Oauth
  23. * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
  24. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  25. */
  26. /**
  27. * OAuth authorization block
  28. *
  29. * @category Mage
  30. * @package Mage_Oauth
  31. * @author Magento Core Team <core@magentocommerce.com>
  32. */
  33. class Mage_Oauth_Block_Authorize extends Mage_Oauth_Block_AuthorizeBaseAbstract
  34. {
  35. /**
  36. * Retrieve customer form posting url
  37. *
  38. * @return string
  39. */
  40. public function getPostActionUrl()
  41. {
  42. /** @var $helper Mage_Customer_Helper_Data */
  43. $helper = $this->helper('customer');
  44. $url = $helper->getLoginPostUrl();
  45. if ($this->getIsSimple()) {
  46. if (strstr($url, '?')) {
  47. $url .= '&simple=1';
  48. } else {
  49. $url = rtrim($url, '/') . '/simple/1';
  50. }
  51. }
  52. return $url;
  53. }
  54. /**
  55. * Get form identity label
  56. *
  57. * @return string
  58. */
  59. public function getIdentityLabel()
  60. {
  61. return $this->__('Email Address');
  62. }
  63. /**
  64. * Get form identity label
  65. *
  66. * @return string
  67. */
  68. public function getFormTitle()
  69. {
  70. return $this->__('Log in as customer');
  71. }
  72. /**
  73. * Retrieve reject URL path
  74. *
  75. * @return string
  76. */
  77. public function getRejectUrlPath()
  78. {
  79. return 'oauth/authorize/reject';
  80. }
  81. }