Views argument dynamic filters
Views argument dynamic filters
Categories:Go to this link:
http://drupal.org/node/70145#comment-928042
- 437 reads
Views argument dynamic filtersViews argument dynamic filtersCategories:Go to this link:
|
Browse by categoryRecent Blog posts |
As a small note to dynamic
As a small note to dynamic filters, for example:
<?php$my_view = views_get_view('my_name');
$my_view->filter[1]['value'] = 1;
$my_view->is_cacheable = 0;
?>
Always use
<?php $my_view->is_cacheable = 0;?>after adding filters, fields, arguments or anything dynamically to a view.Post new comment