class/oledrion_utils.php 1 location
|
@@ 1950-1960 (lines=11) @@
|
1947 |
|
* @param $info |
1948 |
|
* @return string |
1949 |
|
*/ |
1950 |
|
public function paymentHtmlSelect($info) |
1951 |
|
{ |
1952 |
|
$ret = ''; |
1953 |
|
$ret .= '<div class="oledrion_htmlform">'; |
1954 |
|
$ret .= '<img class="oledrion_htmlimage" src="' . $info['payment_image_url'] . '" alt="' . $info['payment_title'] . '">'; |
1955 |
|
$ret .= '<h3>' . $info['payment_title'] . '</h3>'; |
1956 |
|
$ret .= '<p>' . $info['payment_description'] . '</p>'; |
1957 |
|
$ret .= '</div>'; |
1958 |
|
|
1959 |
|
return $ret; |
1960 |
|
} |
1961 |
|
|
1962 |
|
/** |
1963 |
|
* @return array |
class/utility.php 1 location
|
@@ 2093-2103 (lines=11) @@
|
2090 |
|
* @param $info |
2091 |
|
* @return string |
2092 |
|
*/ |
2093 |
|
public static function paymentHtmlSelect($info) |
2094 |
|
{ |
2095 |
|
$ret = ''; |
2096 |
|
$ret .= '<div class="oledrion_htmlform">'; |
2097 |
|
$ret .= '<img class="oledrion_htmlimage" src="' . $info['payment_image_url'] . '" alt="' . $info['payment_title'] . '">'; |
2098 |
|
$ret .= '<h3>' . $info['payment_title'] . '</h3>'; |
2099 |
|
$ret .= '<p>' . $info['payment_description'] . '</p>'; |
2100 |
|
$ret .= '</div>'; |
2101 |
|
|
2102 |
|
return $ret; |
2103 |
|
} |
2104 |
|
|
2105 |
|
/** |
2106 |
|
* @return array |