Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a9d8966e22 | |||
| b742a833d1 |
@@ -2,6 +2,8 @@ name: Build
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
@@ -60,6 +60,15 @@ class AdminSimpleWithdrawalController extends ModuleAdminController
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function l($string, $class = null, $addslashes = false, $htmlentities = true)
|
||||||
|
{
|
||||||
|
if ($this->module) {
|
||||||
|
return $this->module->l($string, 'AdminSimpleWithdrawalController');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $string;
|
||||||
|
}
|
||||||
|
|
||||||
public function renderScopeLabel($value, $row)
|
public function renderScopeLabel($value, $row)
|
||||||
{
|
{
|
||||||
if ($value === 'partial') {
|
if ($value === 'partial') {
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class Simple_withdrawalbutton extends Module
|
|||||||
{
|
{
|
||||||
$this->name = 'simple_withdrawalbutton';
|
$this->name = 'simple_withdrawalbutton';
|
||||||
$this->tab = 'administration';
|
$this->tab = 'administration';
|
||||||
$this->version = '0.1.2';
|
$this->version = '0.1.3';
|
||||||
$this->author = 'Arne Weiss';
|
$this->author = 'Arne Weiss';
|
||||||
$this->need_instance = 0;
|
$this->need_instance = 0;
|
||||||
$this->bootstrap = true;
|
$this->bootstrap = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user