@@ -603,7 +626,7 @@ class views_plugin_display extends views_object {
$form['description']=array(
'#prefix'=>'<div class="description form-item">',
'#suffix'=>'</div>',
'#value'=>t('If set, this view will use an AJAX mechanism for paging, table sorting and exposed filters. This means the entire page will not refresh. It is not recommend that you use this if this view is the main content of the page, but it is very useful for side content.'),
'#value'=>t('If set, this view will use an AJAX mechanism for paging, table sorting and exposed filters. This means the entire page will not refresh. It is not recommended that you use this if this view is the main content of the page as it will prevent deep linking to specific pages, but it is very useful for side content.'),
);
$form['use_ajax']=array(
'#type'=>'radios',
...
...
@@ -640,6 +663,15 @@ class views_plugin_display extends views_object {
$form['#title'].=t('Add a more link to the bottom of the display.');
$form['use_more']=array(
'#type'=>'checkbox',
'#title'=>t('Create more link'),
'#description'=>t('This will add a more link to the bottom of this view, which will link to the page view. If you have more than one page view, the link will point to the display specified in \'Link display\' above.'),
'#default_value'=>$this->get_option('use_more'),
);
break;
case'access':
$form['#title'].=t('Access restrictions');
$form['access']=array(
...
...
@@ -840,6 +872,9 @@ class views_plugin_display extends views_object {