interface RulesPluginFeaturesIntegrationInterface

Interface to give features access to the faces extensions mechanism.

Interface that allows rules plugins or actions/conditions to customize the features export by implementing the interface using the faces extensions mechanism.

Hierarchy

Expanded class hierarchy of RulesPluginFeaturesIntegrationInterface

All classes that implement RulesPluginFeaturesIntegrationInterface

See also

hook_rules_plugin_info()

hook_rules_action_info()

1 string reference to 'RulesPluginFeaturesIntegrationInterface'
RulesFeaturesController::export in ./rules.features.inc
Generates the result for hook_features_export().

File

./rules.features.inc, line 71

View source
interface RulesPluginFeaturesIntegrationInterface {
    
    /**
     * Allows customizing the features export for a given rule element.
     */
    public function features_export(&$export, &$pipe, $module_name = '');

}

Members

Title Sort descending Modifiers Object type Summary
RulesPluginFeaturesIntegrationInterface::features_export public function Allows customizing the features export for a given rule element.