123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- function hook_features_override_default() {
- return array();
- }
- function hook_features_override_component_overrides_alter(&$default, &$normal, $context) {
- if ($context['component'] == 'views_view') {
- unset($normal->api_version);
- }
- }
- function hook_features_override_export_render_addition() {
- }
- function hook_features_override_export_render_deletion() {
- }
|