/[drupal]/contributions/modules/simpleviews/simpleviews.pages.inc
ViewVC logotype

Diff of /contributions/modules/simpleviews/simpleviews.pages.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1.2.1, Fri Sep 26 19:28:46 2008 UTC revision 1.1.2.2, Thu Sep 17 22:03:44 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: simpleviews.pages.inc,v 1.1 2008/09/25 22:08:09 eaton Exp $  // $Id: simpleviews.pages.inc,v 1.1.2.1 2008/09/26 19:28:46 eaton Exp $
3    
4  /**  /**
5   * Build the overview form.   * Build the overview form.
# Line 51  function _simpleviews_overview_item_fiel Line 51  function _simpleviews_overview_item_fiel
51    
52    $path = drupal_get_path('module', 'simpleviews') . '/images/';    $path = drupal_get_path('module', 'simpleviews') . '/images/';
53    $links[] = array(    $links[] = array(
54      'title' => theme('image', $path . 'text-editor.png', t('Edit')),      'title' => theme('image', $path . 'text-editor.png', t('Edit'), t('Edit')),
55      'href' => 'admin/build/simpleviews/' . $item['svid'] . '/edit',      'href' => 'admin/build/simpleviews/' . $item['svid'] . '/edit',
56      'html' => TRUE,      'html' => TRUE,
57    );    );
58    $links[] = array(    $links[] = array(
59      'title' => theme('image', $path . 'edit-delete.png', t('Delete')),      'title' => theme('image', $path . 'edit-delete.png', t('Delete'), t('Delete')),
60      'href' => 'admin/build/simpleviews/' . $item['svid'] . '/delete',      'href' => 'admin/build/simpleviews/' . $item['svid'] . '/delete',
61      'html' => TRUE,      'html' => TRUE,
62    );    );
# Line 282  function theme_simpleviews_edit_form($fo Line 282  function theme_simpleviews_edit_form($fo
282    $form['argument']['argument']['#prefix'] = '<div id="simpleviews-arg-wrapper"' . $extra . '>';    $form['argument']['argument']['#prefix'] = '<div id="simpleviews-arg-wrapper"' . $extra . '>';
283    $form['argument']['argument']['#suffix'] = '</div>';    $form['argument']['argument']['#suffix'] = '</div>';
284    
285    $output .= '<div id="simpleviews-elements">' . drupal_render($form) . '</div>';    $output = '<div id="simpleviews-elements">' . drupal_render($form) . '</div>';
286    return $output;    return $output;
287  }  }
288    

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

  ViewVC Help
Powered by ViewVC 1.1.2