Fix bad links
This commit is contained in:
parent
a597dc8b11
commit
05c1150477
@ -106,47 +106,48 @@ class modStripe extends DolibarrModules
|
|||||||
'user'=>2
|
'user'=>2
|
||||||
); // 0=Menu for internal users, 1=external users, 2=both
|
); // 0=Menu for internal users, 1=external users, 2=both
|
||||||
$r++;
|
$r++;
|
||||||
|
|
||||||
$this->menu[$r] = array('fk_menu'=>'fk_mainmenu=bank',
|
$this->menu[$r] = array(
|
||||||
'type'=>'left',
|
'fk_menu'=>'fk_mainmenu=bank',
|
||||||
'titre'=>'StripeAccount',
|
'type'=>'left',
|
||||||
'mainmenu'=>'bank',
|
'titre'=>'StripeAccount',
|
||||||
'leftmenu'=>'stripe',
|
'mainmenu'=>'bank',
|
||||||
'url' => '/stripe/charge.php',
|
'leftmenu'=>'stripe',
|
||||||
'langs' => 'stripe',
|
'url' => '/stripe/charge.php',
|
||||||
'position' => 100,
|
'langs' => 'stripe',
|
||||||
'enabled' => '1',
|
'position' => 100,
|
||||||
'perms' => '$user->rights->banque->configurer',
|
'enabled' => '$conf->global->MAIN_FEATURES_LEVEL >= 2',
|
||||||
'target' => '',
|
'perms' => '$user->rights->banque->configurer',
|
||||||
'user' => 0
|
'target' => '',
|
||||||
|
'user' => 0
|
||||||
);
|
);
|
||||||
|
|
||||||
$r ++;
|
$r++;
|
||||||
$this->menu[$r] = array(
|
|
||||||
'fk_menu' => 'fk_mainmenu=bank,fk_leftmenu=stripe',
|
|
||||||
'type' => 'left',
|
|
||||||
'titre' => 'StripeChargeList',
|
|
||||||
'url' => '/stripe/charge.php',
|
|
||||||
'langs' => 'stripe',
|
|
||||||
'position' => 102,
|
|
||||||
'enabled' => '$conf->stripe->enabled && $conf->banque->enabled',
|
|
||||||
'perms' => '$user->rights->banque->configurer',
|
|
||||||
'target' => '',
|
|
||||||
'user' => 0
|
|
||||||
);
|
|
||||||
|
|
||||||
$r ++;
|
|
||||||
$this->menu[$r] = array(
|
$this->menu[$r] = array(
|
||||||
'fk_menu' => 'fk_mainmenu=bank,fk_leftmenu=stripe',
|
'fk_menu' => 'fk_mainmenu=bank,fk_leftmenu=stripe',
|
||||||
'type' => 'left',
|
'type' => 'left',
|
||||||
'titre' => 'StripeTransactionList',
|
'titre' => 'StripeChargeList',
|
||||||
'url' => '/stripe/transaction.php',
|
'url' => '/stripe/charge.php',
|
||||||
'langs' => 'stripe',
|
'langs' => 'stripe',
|
||||||
'position' => 102,
|
'position' => 102,
|
||||||
'enabled' => '$conf->stripe->enabled && $conf->banque->enabled',
|
'enabled' => '$conf->stripe->enabled && $conf->banque->enabled && $conf->global->MAIN_FEATURES_LEVEL >= 2',
|
||||||
'perms' => '$user->rights->banque->configurer',
|
'perms' => '$user->rights->banque->configurer',
|
||||||
'target' => '',
|
'target' => '',
|
||||||
'user' => 0
|
'user' => 0
|
||||||
|
);
|
||||||
|
|
||||||
|
$r++;
|
||||||
|
$this->menu[$r] = array(
|
||||||
|
'fk_menu' => 'fk_mainmenu=bank,fk_leftmenu=stripe',
|
||||||
|
'type' => 'left',
|
||||||
|
'titre' => 'StripeTransactionList',
|
||||||
|
'url' => '/stripe/transaction.php',
|
||||||
|
'langs' => 'stripe',
|
||||||
|
'position' => 102,
|
||||||
|
'enabled' => '$conf->stripe->enabled && $conf->banque->enabled && $conf->global->MAIN_FEATURES_LEVEL >= 2',
|
||||||
|
'perms' => '$user->rights->banque->configurer',
|
||||||
|
'target' => '',
|
||||||
|
'user' => 0
|
||||||
);
|
);
|
||||||
|
|
||||||
// Exports
|
// Exports
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user