2010-08-15 68 views

回答

0

通过获取视图副本并使用适当的过滤器,您可以非常容易地做到这一点。哎呀,你可以做到这一点在这里vid是路径的一部分,所以它适用于所有的词汇表。坚持...

是的,我认为这是我最近做的这个视图 - 只需复制/粘贴到查看导入

$view = new view; 
$view->name = 'vocabulary'; 
$view->description = 'Displays all nodes in a vocabulary'; 
$view->tag = ''; 
$view->view_php = ''; 
$view->base_table = 'node'; 
$view->is_cacheable = FALSE; 
$view->api_version = 2; 
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ 
$handler = $view->new_display('default', 'Defaults', 'default'); 
$handler->override_option('sorts', array(
    'sticky' => array(
    'order' => 'DESC', 
    'id' => 'sticky', 
    'table' => 'node', 
    'field' => 'sticky', 
    'relationship' => 'none', 
), 
    'created' => array(
    'order' => 'DESC', 
    'granularity' => 'second', 
    'id' => 'created', 
    'table' => 'node', 
    'field' => 'created', 
    'relationship' => 'none', 
), 
)); 
$handler->override_option('arguments', array(
    'vid' => array(
    'default_action' => 'not found', 
    'style_plugin' => 'default_summary', 
    'style_options' => array(), 
    'wildcard' => 'all', 
    'wildcard_substitution' => 'All', 
    'title' => '%1', 
    'breadcrumb' => '', 
    'default_argument_type' => 'fixed', 
    'default_argument' => '', 
    'validate_type' => 'none', 
    'validate_fail' => 'not found', 
    'id' => 'vid', 
    'table' => 'vocabulary', 
    'field' => 'vid', 
    'validate_user_argument_type' => 'uid', 
    'validate_user_roles' => array(
     '2' => 0, 
     '3' => 0, 
     '4' => 0, 
     '5' => 0, 
    ), 
    'relationship' => 'none', 
    'default_options_div_prefix' => '', 
    'default_argument_fixed' => '', 
    'default_argument_user' => 0, 
    'default_argument_php' => '', 
    'validate_argument_node_type' => array(
     'blog' => 0, 
     'poll' => 0, 
     'faq' => 0, 
     'forum' => 0, 
     'event' => 0, 
     'link' => 0, 
     'page' => 0, 
     'story' => 0, 
    ), 
    'validate_argument_node_access' => 0, 
    'validate_argument_nid_type' => 'nid', 
    'validate_argument_vocabulary' => array(
     '1' => 0, 
     '5' => 0, 
     '3' => 0, 
     '6' => 0, 
     '4' => 0, 
     '7' => 0, 
     '8' => 0, 
     '9' => 0, 
     '10' => 0, 
     '11' => 0, 
     '12' => 0, 
    ), 
    'validate_argument_type' => 'tid', 
    'validate_argument_transform' => 0, 
    'validate_user_restrict_roles' => 0, 
    'validate_argument_node_flag_name' => '*relationship*', 
    'validate_argument_node_flag_test' => 'flaggable', 
    'validate_argument_node_flag_id_type' => 'id', 
    'validate_argument_user_flag_name' => '*relationship*', 
    'validate_argument_user_flag_test' => 'flaggable', 
    'validate_argument_user_flag_id_type' => 'id', 
    'validate_argument_php' => '', 
), 
)); 
$handler->override_option('filters', array(
    'status' => array(
    'operator' => '=', 
    'value' => '1', 
    'group' => '0', 
    'exposed' => FALSE, 
    'expose' => array(
     'operator' => FALSE, 
     'label' => '', 
    ), 
    'id' => 'status', 
    'table' => 'node', 
    'field' => 'status', 
    'relationship' => 'none', 
), 
)); 
$handler->override_option('access', array(
    'type' => 'none', 
)); 
$handler->override_option('cache', array(
    'type' => 'none', 
)); 
$handler->override_option('use_pager', '1'); 
$handler->override_option('row_plugin', 'node'); 
$handler->override_option('row_options', array(
    'relationship' => 'none', 
    'build_mode' => 'teaser', 
    'links' => 1, 
    'comments' => 1, 
)); 
$handler = $view->new_display('page', 'Page', 'page_1'); 
$handler->override_option('path', 'vocabulary/%'); 
$handler->override_option('menu', array(
    'type' => 'none', 
    'title' => '', 
    'description' => '', 
    'weight' => 0, 
    'name' => 'navigation', 
)); 
$handler->override_option('tab_options', array(
    'type' => 'none', 
    'title' => '', 
    'description' => '', 
    'weight' => 0, 
    'name' => 'navigation', 
)); 
+0

谢谢!还有一件事:我已经定制了分类视图(我启用了视图中的默认视图)我应该手动对视图进行相同的更改以使它们具有可视性相同,还是有更快的方法? – aneuryzm 2010-08-16 07:02:44

+0

我只想进入并对此视图进行相同的更改。它无论如何不是真正的_my_视图,它只是一个如何显示给定词汇表中所有节点的简单示例。如果你喜欢答案,你应该投票!莫名其妙地达到1500点。 :) – 2010-08-16 19:41:26

+0

好的,那么我可以复制视图并过滤特定的内容类型,并且我拥有所有节点。对 ?好的,我会投票:) – aneuryzm 2010-08-17 08:08:52