1. Go to this page and download the library: Download vladab/feature-flags-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vladab / feature-flags-bundle example snippets
php
# app/AppKernel.php
public function registerBundles()
{
$bundles = [
// [..]
new DZunke\FeatureFlagsBundle\DZunkeFeatureFlagsBundle(),
];
}
php
# src/AcmeBundle/Controller/IndexController.php
namespace AcmeBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
public function indexAction()
{
if ($this->get('dz.feature_flags.toggle')->isActive('FooFeature')) {
// [...]
}
// [...]
}
}
php
# src/AcmeBundle/FeatureFlags/Condition/Foo.php
namespace AcmeBundle\FeatureFlags\Condition;
use DZunke\FeatureFlagsBundle\Toggle\Conditions\AbstractCondition;
use DZunke\FeatureFlagsBundle\Toggle\Conditions\ConditionInterface;
class Foo extends AbstractCondition implements ConditionInterface
{
public function validate($config, $argument = null)
{
// [..] Implement your Methods to Validate the Feature
return true;
}
public function __toString()
{
return 'Foo';
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.