15 lines
178 B
PHP
15 lines
178 B
PHP
<?php
|
|
|
|
class cvIngTwisto extends cvIngPlugin
|
|
{
|
|
|
|
public static function isActive()
|
|
{
|
|
if(!PaymentTypePeer::isActive('cvIngTwisto')) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|