/library/Ecart/Method/Abstract.php

https://code.google.com/p/ecartcommerce/ · PHP · 109 lines · 55 code · 11 blank · 43 comment · 1 complexity · 3d7ff89bcd412dd8af75a8c244650aa9 MD5 · raw file

  1. <?php
  2. /**
  3. * Ecart
  4. *
  5. * This file is part of Ecart.
  6. *
  7. * Ecart is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Ecart is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Ecart. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * @category Ecart
  21. * @package Ecart_Checkout
  22. * @copyright Copyright 2008-2009 E-Cart LLC
  23. * @license GNU Public License V3.0
  24. */
  25. /**
  26. *
  27. * @category Ecart
  28. * @package Ecart_Checkout
  29. * @subpackage Method
  30. * @author Ecart Core Team <core@ecartcommerce.com>
  31. * @abstract
  32. */
  33. abstract class Ecart_Method_Abstract
  34. {
  35. /**
  36. *
  37. * @var string
  38. */
  39. protected $_code;
  40. protected $_section;
  41. protected $_logger;
  42. protected $_title;
  43. protected $_description;
  44. protected $_config;
  45. protected $_file;
  46. protected $_icon;
  47. public function __construct()
  48. {
  49. $this->_config = Ecart::config()->{$this->_section}->{$this->getCode()};
  50. $this->init();
  51. }
  52. public function init(){}
  53. public function isEnabled()
  54. {
  55. return $this->_config->enabled;
  56. }
  57. public function getCode()
  58. {
  59. return $this->_code;
  60. }
  61. /**
  62. * Return module name by method code
  63. * @return string
  64. */
  65. public function getModuleName()
  66. {
  67. list($moduleName, $fileName) = explode('_Model_', get_class($this), 2);
  68. return $moduleName;
  69. }
  70. /**
  71. * Return method file name by method code
  72. * @return string
  73. */
  74. public function getFileName()
  75. {
  76. list($moduleName, $fileName) = explode('_Model_', get_class($this), 2);
  77. return $fileName;
  78. }
  79. public function getTitle()
  80. {
  81. return $this->_title;
  82. }
  83. public function getDescription()
  84. {
  85. return $this->_description;
  86. }
  87. public function getIcon()
  88. {
  89. return $this->_icon;
  90. }
  91. public function config($key = null)
  92. {
  93. if (null === $key) {
  94. return $this->_config;
  95. }
  96. return null === $this->_config ? null : $this->_config->$key;
  97. }
  98. }