tripal_views_integration.inc 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227
  1. <?php
  2. /**
  3. * @file
  4. * Functions related to the UI for integrating tables with views
  5. */
  6. /**
  7. * Purpose: Generates a themable table containing the list of integrated tables
  8. * The look-and-feel of the table can be altered by overriding the theme for
  9. * tables.
  10. *
  11. * @return
  12. * a themed HTML table
  13. *
  14. * @ingroup tripal_views_integration
  15. */
  16. function tripal_views_integration_setup_list() {
  17. $output = '';
  18. $output .= '<ul class="action-links">';
  19. $output .= '<li>' . l(t('Add a New Entry'), "admin/tripal/views-integration/new") . '</li>';
  20. $output .= '<li style="float: right;">' . l(t('Delete ALL Entries'), "admin/tripal/views-integration/delete-all/confirm") . '</li>';
  21. $output .= '</ul>';
  22. $output .= '<p>' . t('The following tables are available for integration with Drupal Views. If '
  23. . 'a table is integrated more than once, then the setup with the lightest '
  24. . 'priority will be used. For example, if you have created a custom setup with a priority of -5 then '
  25. . 'that will be used instead of the default setup with priority 10. '
  26. . 'Priorities range from -10 to +10 where a setup with -10 has '
  27. . 'greater precedent than any other and +10 has the least.') . '</p>';
  28. // Start with materialized views
  29. $output .= '<br /><h3>Legacy Materialized Views</h3>';
  30. $header = array('', 'Drupal Views Type Name', 'Table Name', 'Is Legacy?', 'Priority', 'Comment');
  31. $rows = array();
  32. // get the list of materialized views
  33. $tviews = db_query('SELECT tv.setup_id, tv.name, tv.table_name, tc.table_id, tv.priority, tv.comment '
  34. .'FROM {tripal_views} tv '
  35. .'LEFT JOIN {tripal_custom_tables} tc ON tc.table_name=tv.table_name '
  36. .'WHERE tv.mview_id IS NOT NULL '
  37. .'ORDER BY tv.table_name ASC, tv.priority ASC');
  38. foreach ($tviews as $tview) {
  39. $rows[] = array(
  40. l(t('Edit'), "admin/tripal/views/integration/edit/" . $tview->setup_id) . "<br />"
  41. . l(t('Export'), "admin/tripal/views/integration/export/" . $tview->setup_id) . "<br />"
  42. . l(t('Delete'), "admin/tripal/views/integration/delete/" . $tview->setup_id),
  43. $tview->name,
  44. $tview->table_name,
  45. ($tview->table_id) ? 'No' : 'Yes',
  46. $tview->priority,
  47. $tview->comment,
  48. );
  49. }
  50. if ($rows) {
  51. $output .= theme('table', array('header' => $header, 'rows' => $rows));
  52. }
  53. else {
  54. $output .= '<p>There are currently no Materialized Views defined. ';
  55. }
  56. // Now list non-mview custom tables
  57. $output .= '<br /><h3>Custom Tables & Non-Legacy Materialized Views</h3>';
  58. $header = array('', 'Drupal Views Type Name', 'Table Name', 'Priority', 'Comment');
  59. $rows = array();
  60. // get the list of chado tables
  61. $tviews = db_query('SELECT tv.setup_id, tv.name, tv.table_name, tv.priority, tv.comment '
  62. .'FROM {tripal_views} tv '
  63. .'LEFT JOIN {tripal_custom_tables} tc ON tc.table_name=tv.table_name '
  64. .'WHERE mview_id IS NULL AND tc.table_id IS NOT NULL '
  65. .'ORDER BY table_name ASC, priority ASC');
  66. foreach ($tviews as $tview) {
  67. $rows[] = array(
  68. l(t('Edit'), "admin/tripal/views/integration/edit/" . $tview->setup_id) . "<br />"
  69. . l(t('Export'), "admin/tripal/views/integration/export/" . $tview->setup_id) . "<br />"
  70. . l(t('Delete'), "admin/tripal/views/integration/delete/" . $tview->setup_id),
  71. $tview->name,
  72. $tview->table_name,
  73. $tview->priority,
  74. $tview->comment,
  75. );
  76. }
  77. if ($rows) {
  78. $output .= theme('table', array('header' => $header, 'rows' => $rows));
  79. }
  80. else {
  81. $output .= '<p>There are currently no non-Materialized View Custom Tables defined.</p>';
  82. }
  83. // Now list chado tables
  84. $output .= '<br /><h3>Chado Tables</h3>';
  85. $header = array('', 'Drupal Views Type Name', 'Table Name', 'Priority', 'Comment');
  86. $rows = array();
  87. // get the list of chado tables
  88. $tviews = db_query('SELECT tv.setup_id, tv.name, tv.table_name, tv.priority, tv.comment '
  89. .'FROM {tripal_views} tv '
  90. .'LEFT JOIN {tripal_custom_tables} tc ON tc.table_name=tv.table_name '
  91. .'WHERE mview_id IS NULL AND tc.table_id IS NULL '
  92. .'ORDER BY table_name ASC, priority ASC');
  93. foreach ($tviews as $tview) {
  94. $rows[] = array(
  95. l(t('Edit'), "admin/tripal/views/integration/edit/" . $tview->setup_id) . "<br />"
  96. . l(t('Export'), "admin/tripal/views/integration/export/" . $tview->setup_id) . "<br />"
  97. . l(t('Delete'), "admin/tripal/views/integration/delete/" . $tview->setup_id),
  98. $tview->name,
  99. $tview->table_name,
  100. $tview->priority,
  101. $tview->comment,
  102. );
  103. }
  104. $output .= theme('table', array('header' => $header, 'rows' => $rows));
  105. return $output;
  106. }
  107. /**
  108. * Purpose: Deletes integration of a table with the Views module. This
  109. * function is meant to be called from a menu item. After completion it
  110. * redirects the user to the views intergation page.
  111. *
  112. * @param $setup_id
  113. * the unique setup id for the integrated table
  114. *
  115. * @ingroup tripal_views_integration
  116. */
  117. function tripal_views_integration_delete($setup_id) {
  118. tripal_views_integration_remove_entry_by_setup_id($setup_id);
  119. drupal_set_message(t("Record Deleted"));
  120. drupal_goto('admin/tripal/views/integration');
  121. }
  122. /**
  123. * Purpose: Deletes ALL Tripal Views Integrations. This
  124. * function is meant to be called from a menu item. After completion it
  125. * redirects the user to the views intergation page.
  126. *
  127. * @ingroup tripal_views_integration
  128. */
  129. function tripal_views_integration_delete_all_form ($form, $form_state) {
  130. $form['extra'] = array(
  131. '#type' => 'item',
  132. '#markup' => t('This will REMOVE ALL views integrations (both custom and default) '
  133. . 'from your website. This allows integrations to be rebuilt to new default '
  134. . 'settings and is especially useful after an upgrade to the views integration system.'),
  135. );
  136. $form['description'] = array(
  137. '#type' => 'item',
  138. '#markup' => t('Are you sure you want to REMOVE ALL Views Integrations (including custom integrations) from your system?'),
  139. );
  140. $form['actions'] = array('#type' => 'actions');
  141. $form['actions']['submit'] = array(
  142. '#type' => 'submit',
  143. '#value' => t('Confirm'),
  144. );
  145. $form['actions']['cancel'] = array(
  146. '#type' => 'link',
  147. '#title' => t('Cancel'),
  148. '#href' => 'admin/tripal/views-integration/list',
  149. );
  150. // By default, render the form using theme_confirm_form().
  151. if (!isset($form['#theme'])) {
  152. $form['#theme'] = 'confirm_form';
  153. }
  154. return $form;
  155. }
  156. /**
  157. * Purpose: Deletes ALL Tripal Views Integrations. This
  158. * function is meant to be called from a menu item. After completion it
  159. * redirects the user to the views intergation page.
  160. *
  161. * @ingroup tripal_views_integration
  162. */
  163. function tripal_views_integration_delete_all_form_submit ($form, &$form_state) {
  164. tripal_views_rebuild_views_integrations(TRUE);
  165. $form_state['redirect'] = 'admin/tripal/views-integration/list';
  166. }
  167. /**
  168. * Purpose: defines the web form used for specifing the base table, joins and
  169. * handlers when integrating a table with views. This form is used for both
  170. * creating a new record and editing an existing record.
  171. *
  172. * @param $form_state
  173. * The form state which is passed automatically by drupal
  174. *
  175. * @param $setup_id
  176. * The unique setup for an integrated table. This value is only set when
  177. * the form is used for updating an existing record.
  178. *
  179. * @return
  180. * A proper Drupal form associative array.
  181. *
  182. * D7 @todo: Add ability to manage custom fields
  183. * D7 @todo: Update relationship handler to work with the new tripal_views_join method
  184. *
  185. * @ingroup tripal_views_integration
  186. */
  187. function tripal_views_integration_form($form, $form_state) {
  188. $form = array();
  189. $data = array();
  190. $form['#cache'] = TRUE;
  191. if (isset($form_state['build_info']['args'][0])) {
  192. $setup_id = $form_state['build_info']['args'][0];
  193. }
  194. else {
  195. $setup_id = NULL;
  196. }
  197. // if Ajax is triggered to change the fields table
  198. // then make some tweaks before the form is rendered
  199. if (isset($form_state['triggering_element'])) {
  200. $triggering_element = $form_state['triggering_element']['#name'];
  201. if (($triggering_element == 'table_name' OR $triggering_element == 'mview_id')) {
  202. $form_state['values'][$triggering_element] = $form_state['triggering_element']['#value'];
  203. $setup_id = NULL;
  204. }
  205. }
  206. // if a setup_id is provided then we want to get the form defaults
  207. $setup_obj = array();
  208. if (isset($setup_id)) {
  209. // get the default setup values
  210. $sql = "SELECT * FROM {tripal_views} WHERE setup_id = :setup";
  211. $setup_obj = db_query($sql, array(':setup' => $setup_id));
  212. $setup_obj = $setup_obj->fetchObject();
  213. $mview_id = $setup_obj->mview_id;
  214. $table_name = $setup_obj->table_name;
  215. $form_state['values']['mview_id'] = $mview_id;
  216. $form_state['values']['table_name'] = $table_name;
  217. // get the default field name/description
  218. $sql = "SELECT * FROM {tripal_views_field} WHERE setup_id=:setup";
  219. $query = db_query($sql, array(':setup' => $setup_id));
  220. $default_fields = array();
  221. foreach ($query as $field) {
  222. $default_fields[$field->column_name]['name'] = $field->name;
  223. $default_fields[$field->column_name]['description'] = $field->description;
  224. }
  225. // get the default join settings and handlers
  226. $sql = "SELECT * FROM {tripal_views_join} WHERE setup_id = :setup";
  227. $query = db_query($sql, array(':setup' => $setup_id));
  228. $default_joins = array();
  229. foreach ($query as $join) {
  230. $default_joins[$join->base_field]['left_table'] = $join->left_table;
  231. $default_joins[$join->base_field]['left_field'] = $join->left_field;
  232. }
  233. // get the default handlers
  234. $sql = "SELECT * FROM {tripal_views_handlers} WHERE setup_id = :setup";
  235. $query = db_query($sql, array(':setup' => $setup_id));
  236. $default_handlers = array();
  237. foreach ($query as $handler) {
  238. $default_handlers[$handler->column_name][$handler->handler_type]['handler_name'] = $handler->handler_name;
  239. $default_handlers[$handler->column_name][$handler->handler_type]['arguments'] = $handler->arguments;
  240. }
  241. // get the default join handlers
  242. $sql = "SELECT * FROM {tripal_views_join} WHERE setup_id = :setup";
  243. $query = db_query($sql, array(':setup' => $setup_id));
  244. foreach ($query as $handler) {
  245. $default_handlers[$handler->base_field]['join']['handler_name'] = $handler->handler;
  246. //$default_handlers[$handler->base_field]['join']['arguments'] = $handler->arguments;
  247. }
  248. // add in the setup_id for the form so we know this is an update not an insert
  249. $form['setup_id'] = array(
  250. '#type' => 'hidden',
  251. '#value' => $setup_id,
  252. );
  253. }
  254. // add a fieldset for the MView & Chado table selectors
  255. $form['base_table_type'] = array(
  256. '#type' => 'fieldset',
  257. '#title' => 'Base Table',
  258. '#description' => 'Please select either a materialized view or a Chado table for integration with '.
  259. 'Drupal Views. In Drupal Views terminology, the selected table becomes the "base table". '.
  260. 'After you select a table from either list, the fields from that table will appear below '.
  261. 'and you can specify other tables to join with and handlers.',
  262. );
  263. // build the form element for the Chado tables
  264. $chado_tables = tripal_core_get_chado_tables(TRUE);
  265. $chado_tables = array_merge(array('Select'), $chado_tables);
  266. $default = '';
  267. if ($setup_id) {
  268. $default = (!$setup_obj->mview_id) ? $setup_obj->table_name : '';
  269. }
  270. $form['base_table_type']['table_name'] = array(
  271. '#title' => t('Chado/Custom Table'),
  272. '#type' => 'select',
  273. '#options' => $chado_tables,
  274. '#description' => t('Tables from Chado, custom tables and materialized view tables (non-legacy MViews) can be selected for integration.'),
  275. '#default_value' => $default,
  276. '#ajax' => array(
  277. //D6: 'path' => 'tripal/views/integration/ajax/view_setup_table',
  278. 'callback' => 'tripal_views_integration_ajax_view_setup_table',
  279. 'wrapper' => 'fieldset-table-rows-wrapper',
  280. 'effect' => 'fade',
  281. 'event' => 'change',
  282. 'method' => 'replace',
  283. ),
  284. );
  285. // build the form element that lists the materialized views
  286. // D7 TODO: Check DBTNG changes work
  287. $query = db_query("SELECT mview_id, name FROM {tripal_mviews} WHERE mv_schema is NULL or mv_schema = '' ORDER BY name");
  288. $mview_tables = array();
  289. $mview_tables['0'] = 'Select';
  290. foreach ($query as $mview) {
  291. $mview_tables[$mview->mview_id] = $mview->name;
  292. }
  293. $default = '';
  294. if ($setup_id && isset($setup_obj->mview_id)) {
  295. $default = $setup_obj->mview_id;
  296. }
  297. $form['base_table_type']['mview_id'] = array(
  298. '#title' => t('Legacy Materialized View'),
  299. '#type' => 'select',
  300. '#options' => $mview_tables,
  301. '#description' => 'Which materialized view to use.',
  302. '#default_value' => $default,
  303. '#ajax' => array(
  304. //D6: 'path' => 'tripal/views/integration/ajax/view_setup_table',
  305. 'callback' => 'tripal_views_integration_ajax_view_setup_table',
  306. 'wrapper' => 'fieldset-table-rows-wrapper',
  307. 'effect' => 'fade',
  308. 'event' => 'change',
  309. 'method' => 'replace',
  310. ),
  311. );
  312. $form['views_type'] = array(
  313. '#type' => 'fieldset',
  314. '#title' => 'View Type',
  315. '#description' => 'Here you can provide the "type" of View you want to create.',
  316. );
  317. // field for the name of the
  318. $default = '';
  319. if ($setup_id && isset($setup_obj->name)) {
  320. $default = $setup_obj->name;
  321. }
  322. $form['views_type']['row_name'] = array(
  323. '#title' => t('View Type Name'),
  324. '#type' => 'textfield',
  325. '#default_value' => $default,
  326. '#size' => 60,
  327. '#maxlength' => 128,
  328. '#description' => 'Provide the view type name. This is the name that will appear in '.
  329. 'the Drupal Views interface when adding a new view. The view type name '.
  330. 'must be unique.',
  331. '#required' => TRUE,
  332. );
  333. if (isset($setup_id)) {
  334. $form['row_name']['#attributes'] = array('readonly' => 'readonly');
  335. }
  336. $priorities = array();
  337. foreach (range(-10, 10) as $v) {
  338. $priorities[$v] = (string) $v;
  339. }
  340. $default = -1;
  341. if ($setup_id && isset($setup_obj->priority)) {
  342. $default = $setup_obj->priority;
  343. if ($setup_obj->priority >= 9) {
  344. drupal_set_message('You are editing a default views integration. To ensure your changes
  345. are used, change the priority to -10.', 'warning');
  346. }
  347. }
  348. $form['views_type']['row_priority'] = array(
  349. '#type' => 'select',
  350. '#title' => t('Priority'),
  351. '#description' => t('The level of priority your Views integration has in relation to the '
  352. .'default core and module definitions. The views integration definition with the '
  353. .'lightest priority will be used. For example, if there is a definition created by '
  354. .'core with a priority of 10 and another by a custom module of 5 and yours is -1 then '
  355. .'you definition will be used for that table because -1 is lighter then both 5 and 10.'),
  356. '#options' => $priorities,
  357. '#default_value' => $default,
  358. );
  359. $default = true;
  360. if ($setup_id && isset($setup_obj->priority)) {
  361. $default = ($setup_obj->priority >= 9) ? true : false;
  362. }
  363. $form['views_type']['new_integration'] = array(
  364. '#type' => 'checkbox',
  365. '#title' => t('Create a New Tripal Views Integration Record'),
  366. '#description' => t('If this checkbox is checked then a new tripal views integration '
  367. .'will be created rather then overriding the current one with your changes. This '
  368. .'especially important if you are editing one of the default views integrations '
  369. .'(ie: if the original priority was either 10 or 9).'),
  370. '#default_value' => $default,
  371. );
  372. $default = true;
  373. if ($setup_id && isset($setup_obj->base_table)) {
  374. $default = $setup_obj->base_table;
  375. }
  376. $form['views_type']['base_table'] = array(
  377. '#type' => 'checkbox',
  378. '#title' => t('Base Table?'),
  379. '#description' => t('If you want this table to show up as one of the options in the '
  380. . 'add view page, then check this checkbox. It allows you to create listings '
  381. . 'primarily from this table'),
  382. '#default_value' => $default,
  383. );
  384. $default = '';
  385. if ($setup_id && isset($setup_obj->comment)) {
  386. $default = $setup_obj->comment;
  387. }
  388. $form['views_type']['row_description'] = array(
  389. '#title' => t('Comment'),
  390. '#type' => 'textarea',
  391. '#description' => '(Optional). Provide any details regarding this setup you would like. This '.
  392. 'description will appear when selecting a type for a new Drupal View',
  393. '#required' => FALSE,
  394. '#default_value' => $default,
  395. );
  396. // we need a div block where the table fields will get put when the
  397. // AHAH callback is made
  398. $form['view_setup_table'] = array(
  399. '#type' => 'item',
  400. '#prefix' => '<div id="fieldset-table-rows-wrapper">',
  401. '#suffix' => '</div>',
  402. );
  403. // add the fieldset for the table fields, but only if the $mview_id or $table_name
  404. // is set. The only times these values are set is if we're editing an existing
  405. // record or if the AHAH callback is being made.
  406. if (isset($form_state['values']['mview_id']) or isset($form_state['values']['table_name'])) {
  407. $mview_id = $form_state['values']['mview_id'];
  408. $table_name = $form_state['values']['table_name'];
  409. $form['view_setup_table'] = array(
  410. '#type' => 'fieldset',
  411. '#title' => t('Table Fields'),
  412. '#prefix' => '<div id="fieldset-table-rows-wrapper">',
  413. '#suffix' => '</div>',
  414. );
  415. // get the columns in this materialized view. They are separated by commas
  416. // where the first word is the column name and the rest is the type
  417. $columns = array();
  418. if ($mview_id) {
  419. // D7 TODO: Check DBTNG changes work
  420. $sql = "SELECT mv_specs FROM {tripal_mviews} WHERE mview_id = :id";
  421. $mview = db_query($sql, array(':id' => $mview_id));
  422. $mview = $mview->fetchObject();
  423. $columns = explode(",", $mview->mv_specs);
  424. }
  425. else {
  426. $table_desc = tripal_core_get_chado_table_schema($table_name);
  427. if ($table_desc) {
  428. $fields = $table_desc['fields'];
  429. // iterate through the columns and build the format
  430. // compatible with the code below. The column name is first followed
  431. // by the type with a separating space
  432. foreach ($fields as $column => $attrs) {
  433. $columns[] = "$column " . $attrs['type'];
  434. }
  435. }
  436. }
  437. $i=1;
  438. $form['view_setup_table']["instructions"] = array(
  439. '#type' => 'markup',
  440. '#value' => filter_xss("Select an optional table to which the fields of the ".
  441. "materialized view can join. If a field does not need to ".
  442. "join you may leave the selection blank."),
  443. );
  444. $data['field_types'] = array();
  445. // get the list of chado tables to join on
  446. $chado_join_tables = tripal_core_get_chado_tables(TRUE);
  447. $chado_join_tables = array_merge(array('Select a Join Table'), $chado_join_tables);
  448. // get list of all handlers
  449. $all_handlers = tripal_views_integration_discover_handlers();
  450. $handlers_fields = array(0 => "Select a field handler");
  451. $handlers_filters = array(0 => "Select a filter handler");
  452. $handlers_sort = array(0 => "Select a sort handler");
  453. $handlers_argument = array(0 => "Select an argument handler");
  454. $handlers_join = array(0 => "Select a join handler");
  455. $handlers_rel = array(0 => "Select a relationship handler");
  456. foreach ($all_handlers as $handler) {
  457. if (preg_match("/views_handler_field/", $handler)) {
  458. $handlers_fields[$handler] = $handler;
  459. }
  460. if (preg_match("/views_handler_filter/", $handler)) {
  461. $handlers_filters[$handler] = $handler;
  462. }
  463. if (preg_match("/views_handler_sort/", $handler)) {
  464. $handlers_sort[$handler] = $handler;
  465. }
  466. if (preg_match("/views_handler_argument/", $handler)) {
  467. $handlers_argument[$handler] = $handler;
  468. }
  469. if (preg_match("/_join/", $handler)) {
  470. $handlers_join[$handler] = $handler;
  471. }
  472. if (preg_match("/views_handler_relationship/", $handler)) {
  473. $handlers_rel[$handler] = $handler;
  474. }
  475. }
  476. // generate a unique $table_id for keeping track of the table
  477. if ($mview_id) {
  478. $table_id = $mview_id;
  479. }
  480. else {
  481. $table_id = $table_name;
  482. }
  483. // Per Row (Fields) --------------
  484. // now iterate through the columns of the materialized view or
  485. // chado table and generate the join and handler fields
  486. foreach ($columns as $column) {
  487. $column = trim($column); // trim trailing and leading spaces
  488. preg_match("/^(.*?)\ (.*?)$/", $column, $matches);
  489. $column_name = $matches[1];
  490. $column_type = $matches[2];
  491. $form['view_setup_table']["$table_id-$i"] = array(
  492. '#type' => 'markup',
  493. '#prefix' => "<div class=\"fields-new-row\">",
  494. '#suffix' => "</div>",
  495. '#value' => filter_xss('')
  496. );
  497. // COLUMN I
  498. $form['view_setup_table']["$table_id-$i"]["fields_name_$table_id-$i"] = array(
  499. '#type' => 'item',
  500. '#prefix' => "<div class=\"column-one\">",
  501. '#markup' => '<span class="column-name">' . filter_xss($column_name) . '</span>'.
  502. '<br /><span class="column-type">' . filter_xss($column_type) . '</span>',
  503. '#suffix' => "</div>",
  504. );
  505. $data['field_types'][$column_name] = $column_type;
  506. // COLUMN II
  507. $form['view_setup_table']["$table_id-$i"]['column-2'] = array(
  508. '#type' => 'markup',
  509. '#prefix' => "<div class=\"column-two\">",
  510. '#suffix' => "</div>",
  511. '#value' => filter_xss('')
  512. );
  513. // set the default values for the human-readable name and description
  514. $default_name = '';
  515. $default_descrip = '';
  516. if (isset($setup_id) && !isset($form_state['values']["fields_readable_name_$table_id-$i"])) {
  517. $default_name = $default_fields[$column_name]['name'];
  518. $default_descrip = $default_fields[$column_name]['description'];
  519. }
  520. elseif (isset($form_state['values']["fields_readable_name_$table_id-$i"])) {
  521. $default_name = $form_state['values']["fields_readable_name_$table_id-$i"];
  522. $default_descrip = $form_state['values']["fields_description_$table_id-$i"];
  523. }
  524. else {
  525. $default_name = ucwords(str_replace('_',' ', $column_name));
  526. $default_descrip = 'TODO: please describe this field!';
  527. }
  528. $form['view_setup_table']["$table_id-$i"]['column-2']["fields_readable_name_$table_id-$i"] = array(
  529. '#type' => 'textfield',
  530. '#title' => 'Human-Readable Name',
  531. '#description' => 'This is the name of the field in the Views UI',
  532. '#required' => TRUE,
  533. '#default_value' => $default_name,
  534. '#size' => 42,
  535. );
  536. $form['view_setup_table']["$table_id-$i"]['column-2']["fields_description_$table_id-$i"] = array(
  537. '#type' => 'textarea',
  538. '#title' => 'Short Description',
  539. '#description' => 'This is the field help in the Views UI',
  540. '#required' => TRUE,
  541. '#cols' => 42,
  542. '#rows' => 3,
  543. '#default_value' => $default_descrip,
  544. );
  545. // COLUMN III
  546. $form['view_setup_table']["$table_id-$i"]['column-3'] = array(
  547. '#type' => 'markup',
  548. '#prefix' => "<div class=\"column-three\">",
  549. '#suffix' => "</div>",
  550. '#value' => filter_xss('')
  551. );
  552. // set the default values for the join table and columns
  553. $default_join_table = 0;
  554. $default_join_field = 0;
  555. if (isset($setup_id) && !isset($form_state['values']["fields_join_$table_id-$i"]) && isset($default_joins[$column_name])) {
  556. $default_join_table = $default_joins[$column_name]['left_table'];
  557. $default_join_field = $default_joins[$column_name]['left_field'];
  558. $form_state['values']["fields_join_$table_id-$i"] = $default_join_table;
  559. $form_state['values']["fields_join_column_$table_id-$i"] = $default_join_field;
  560. }
  561. else {
  562. if (isset($form_state['values']["fields_join_$table_id-$i"])) {
  563. $default_join_table = $form_state['values']["fields_join_$table_id-$i"];
  564. }
  565. if (isset($form_state['values']["fields_join_column_$table_id-$i"])) {
  566. $default_join_field = $form_state['values']["fields_join_column_$table_id-$i"];
  567. }
  568. }
  569. $form['view_setup_table']["$table_id-$i"]['column-3']["fields_join_$table_id-$i"] = array(
  570. '#type' => 'select',
  571. '#prefix' => "<div class=\"fields-column-join\">",
  572. '#suffix' => "</div>",
  573. '#options' => $chado_join_tables,
  574. '#required' => FALSE,
  575. '#default_value' => $default_join_table,
  576. '#ajax' => array(
  577. 'callback' => 'tripal_views_integration_ajax_join_field',
  578. 'wrapper' => "fields-column-join-column-$table_id-$i",
  579. 'effect' => 'fade',
  580. 'event' => 'change',
  581. 'method' => 'replace',
  582. ),
  583. );
  584. $columns = array();
  585. if ($default_join_table) {
  586. // get the table description
  587. $table_desc = tripal_core_get_chado_table_schema($default_join_table);
  588. foreach ($table_desc['fields'] as $column => $def) {
  589. $columns[$column] = $column;
  590. }
  591. }
  592. else {
  593. $columns = array('Select Join Column');
  594. }
  595. $form['view_setup_table']["$table_id-$i"]['column-3']["fields_join_column_$table_id-$i"] = array(
  596. '#type' => 'select',
  597. '#prefix' => " <div id=\"fields-column-join-column-$table_id-$i\" class=\"fields-column-join-column\">",
  598. '#suffix' => "</div>",
  599. '#options' => $columns,
  600. '#required' => FALSE,
  601. '#default_value' => $default_join_field
  602. );
  603. $default_join_handler = 0;
  604. if (isset($setup_id) && !isset($form_state['values']["fields_join_handler_$table_id-$i"]) && isset($default_handlers[$column_name]['join'])) {
  605. $default_join_handler = $default_handlers[$column_name]['join']['handler_name'];
  606. $form_state['values']["fields_join_handler_$table_id-$i"] = $default_join_handler;
  607. }
  608. elseif (isset($form_state['values']["fields_join_handler_$table_id-$i"])) {
  609. $default_join_handler = $form_state['values']["fields_join_handler_$table_id-$i"];
  610. }
  611. $form['view_setup_table']["$table_id-$i"]['column-3']["fields_join_handler_$table_id-$i"] = array(
  612. '#type' => 'select',
  613. '#prefix' => "<div class=\"fields-join-handler\">",
  614. '#suffix' => "</div>",
  615. '#options' => $handlers_join,
  616. '#required' => FALSE,
  617. '#default_value' => $default_join_handler,
  618. );
  619. // COLUMN 4
  620. $form['view_setup_table']["$table_id-$i"]['column-4'] = array(
  621. '#type' => 'markup',
  622. '#prefix' => "<div class=\"column-four\">",
  623. '#suffix' => "</div>",
  624. '#value' => filter_xss('')
  625. );
  626. // create the handler fields
  627. $default_field_handler = 0;
  628. if (isset($setup_id) && !isset($form_state['values']["fields_field_handler_$table_id-$i"])) {
  629. $default_field_handler = $default_handlers[$column_name]['field']['handler_name'];
  630. $form_state['values']["fields_field_handler_$table_id-$i"] = $default_field_handler;
  631. }
  632. else {
  633. $default_field_handler = $form_state['values']["fields_field_handler_$table_id-$i"];
  634. if (!$default_field_handler) {
  635. if ($column_type == 'integer' or $column_type == 'int' or $column_type == 'serial') {
  636. $default_field_handler = 'chado_views_handler_field_numeric';
  637. }
  638. elseif (preg_match("/character varying/", $column_type) or $column_type == 'char' or $column_type == 'text' or $column_type == 'varchar') {
  639. $default_field_handler = 'chado_views_handler_field';
  640. }
  641. elseif ($column_type == 'boolean') {
  642. $default_field_handler = 'chado_views_handler_field_boolean';
  643. }
  644. elseif ($column_type == 'float') {
  645. $default_field_handler = 'chado_views_handler_field_numeric';
  646. }
  647. elseif ($column_type == 'datetime') {
  648. $default_field_handler = 'chado_views_handler_field_date';
  649. }
  650. }
  651. }
  652. $form['view_setup_table']["$table_id-$i"]['column-4']["fields_field_handler_$table_id-$i"] = array(
  653. '#type' => 'select',
  654. '#prefix' => "<div class=\"fields-field-handler\">",
  655. '#suffix' => "</div>",
  656. '#options' => $handlers_fields,
  657. '#required' => FALSE,
  658. '#default_value' => $default_field_handler,
  659. );
  660. $default_filter_handler = 0;
  661. if (isset($setup_id) && !isset($form_state['values']["fields_filter_handler_$table_id-$i"])) {
  662. $default_filter_handler = $default_handlers[$column_name]['filter']['handler_name'];
  663. $form_state['values']["fields_filter_handler_$table_id-$i"]= $default_filter_handler;
  664. }
  665. else {
  666. $default_filter_handler = $form_state['values']["fields_filter_handler_$table_id-$i"];
  667. if (!$default_filter_handler) {
  668. if ($column_type == 'integer' or $column_type == 'int' or $column_type == 'serial') {
  669. $default_filter_handler = 'chado_views_handler_filter_numeric';
  670. }
  671. elseif (preg_match("/^character varying/", $column_type) or $column_type == 'char' or $column_type == 'text' or $column_type == 'varchar') {
  672. $default_filter_handler = 'chado_views_handler_filter_string';
  673. }
  674. elseif ($column_type == 'boolean') {
  675. $default_filter_handler = 'chado_views_handler_filter_boolean';
  676. }
  677. elseif ($column_type == 'float') {
  678. $default_filter_handler = 'chado_views_handler_filter_float';
  679. }
  680. elseif ($column_type == 'datetime') {
  681. $default_filter_handler = 'chado_views_handler_filter_date';
  682. }
  683. }
  684. }
  685. $form['view_setup_table']["$table_id-$i"]['column-4']["fields_filter_handler_$table_id-$i"] = array(
  686. '#type' => 'select',
  687. '#prefix' => "<div class=\"fields-filter-handler\">",
  688. '#suffix' => "</div>",
  689. '#options' => $handlers_filters,
  690. '#required' => FALSE,
  691. '#default_value' => $default_filter_handler,
  692. );
  693. $default_sort_handler = 0;
  694. if (isset($setup_id) && !isset($form_state['values']["fields_sort_handler_$table_id-$i"])) {
  695. $default_sort_handler = $default_handlers[$column_name]['sort']['handler_name'];
  696. $form_state['values']["fields_sort_handler_$table_id-$i"] = $default_sort_handler;
  697. }
  698. else {
  699. $default_sort_handler = $form_state['values']["fields_sort_handler_$table_id-$i"];
  700. if (!$default_sort_handler) {
  701. if ($column_type == 'integer' or $column_type == 'int' or $column_type == 'serial') {
  702. $default_sort_handler = 'chado_views_handler_sort';
  703. }
  704. elseif (preg_match("/character varying/", $column_type) or $column_type == 'char' or $column_type == 'text' or $column_type == 'varchar') {
  705. $default_sort_handler = 'chado_views_handler_sort';
  706. }
  707. elseif ($column_type == 'boolean') {
  708. $default_sort_handler = 'chado_views_handler_sort';
  709. }
  710. elseif ($column_type == 'float') {
  711. $default_sort_handler = 'chado_views_handler_sort';
  712. }
  713. elseif ($column_type == 'datetime') {
  714. $default_sort_handler = 'chado_views_handler_sort_date';
  715. }
  716. }
  717. }
  718. $form['view_setup_table']["$table_id-$i"]['column-4']["fields_sort_handler_$table_id-$i"] = array(
  719. '#type' => 'select',
  720. '#prefix' => "<div class=\"fields-sort-handler\">",
  721. '#suffix' => "</div>",
  722. '#options' => $handlers_sort,
  723. '#required' => FALSE,
  724. '#default_value' => $default_sort_handler,
  725. );
  726. $default_argument_handler = 0;
  727. if (isset($setup_id)
  728. && !isset($form_state['values']["fields_argument_handler_$table_id-$i"])
  729. && isset($default_handlers[$column_name]['argument']))
  730. {
  731. $default_argument_handler = $default_handlers[$column_name]['argument']['handler_name'];
  732. $form_state['values']["fields_argument_handler_$table_id-$i"]=$default_argument_handler ;
  733. }
  734. else {
  735. if (isset($form_state['values']["fields_argument_handler_$table_id-$i"])) {
  736. $default_argument_handler = $form_state['values']["fields_argument_handler_$table_id-$i"];
  737. }
  738. if (!$default_argument_handler) {
  739. if ($column_type == 'integer' or $column_type == 'int' or $column_type == 'serial') {
  740. $default_argument_handler = 'views_handler_argument_numeric';
  741. }
  742. elseif (preg_match("/character varying/", $column_type) or $column_type == 'char' or $column_type == 'text' or $column_type == 'varchar') {
  743. $default_argument_handler = 'views_handler_argument_string';
  744. }
  745. elseif ($column_type == 'boolean') {
  746. $default_argument_handler = 'views_handler_argument_numeric';
  747. }
  748. elseif ($column_type == 'float') {
  749. $default_argument_handler = 'views_handler_argument_numeric';
  750. }
  751. elseif ($column_type == 'datetime') {
  752. $default_argument_handler = 'views_handler_argument_date';
  753. }
  754. }
  755. }
  756. $form['view_setup_table']["$table_id-$i"]['column-4']["fields_argument_handler_$table_id-$i"] = array(
  757. '#type' => 'select',
  758. '#prefix' => "<div class=\"fields-argument-handler\">",
  759. '#suffix' => "</div>",
  760. '#options' => $handlers_argument,
  761. '#required' => FALSE,
  762. '#default_value' => $default_argument_handler,
  763. );
  764. $default_relationship_handler = 0;
  765. if (isset($setup_id)
  766. && !isset($form_state['values']["fields_relationship_handler_$table_id-$i"])
  767. && isset($default_handlers[$column_name]['relationship']))
  768. {
  769. $default_relationship_handler = $default_handlers[$column_name]['relationship']['handler_name'];
  770. $form_state['values']["fields_relationship_handler_$table_id-$i"]=$default_relationship_handler;
  771. }
  772. else {
  773. if (isset($form_state['values']["fields_relationship_handler_$table_id-$i"])) {
  774. $default_relationship_handler = $form_state['values']["fields_relationship_handler_$table_id-$i"];
  775. }
  776. if (!$default_relationship_handler) {
  777. if ($column_type == 'integer' or $column_type == 'int' or $column_type == 'serial') {
  778. $default_relationship_handler = 'views_handler_relationship';
  779. }
  780. elseif (preg_match("/character varying/", $column_type) or $column_type == 'char' or $column_type == 'text' or $column_type == 'varchar') {
  781. $default_relationship_handler = 'views_handler_relationship';
  782. }
  783. elseif ($column_type == 'boolean') {
  784. $default_relationship_handler = 'views_handler_relationship';
  785. }
  786. elseif ($column_type == 'float') {
  787. $default_relationship_handler = 'views_handler_relationship';
  788. }
  789. elseif ($column_type == 'datetime') {
  790. $default_relationship_handler = 'views_handler_relationship';
  791. }
  792. }
  793. }
  794. $form['view_setup_table']["$table_id-$i"]['column-4']["fields_relationship_handler_$table_id-$i"] = array(
  795. '#type' => 'select',
  796. '#prefix' => "<div class=\"fields-relationship-handler\">",
  797. '#suffix' => "</div>",
  798. '#options' => $handlers_rel,
  799. '#required' => FALSE,
  800. '#default_value' => $default_relationship_handler,
  801. );
  802. $i++;
  803. }
  804. $form['view_setup_table']['save'] = array(
  805. '#type' => 'submit',
  806. '#value' => t('Save'),
  807. );
  808. $data['row_count'] = $i - 1;
  809. }
  810. //use this to put values into $form_state['values']
  811. $form['data'] = array();
  812. // Ensure that we don't store an array
  813. // since we will get a check_plain:htmlspecial_characters error if we do
  814. foreach ($data as $key => $value) {
  815. if (is_array($value)) {
  816. $form['data'][$key] = array(
  817. '#type' => 'hidden',
  818. '#value' => serialize($value),
  819. );
  820. }
  821. else {
  822. $form['data'][$key] = array(
  823. '#type' => 'hidden',
  824. '#value' => $value,
  825. );
  826. }
  827. }
  828. $form['#redirect'] = 'admin/tripal/views/integration/list';
  829. return $form;
  830. }
  831. /**
  832. * Purpose: validates the tripal_views_integration_form after submission
  833. *
  834. * @param $form
  835. * The form object which is passed automatically by drupal
  836. *
  837. * @param $form_state
  838. * The form state pbject which is passed automatically by drupal
  839. *
  840. * @ingroup tripal_views_integration
  841. */
  842. function tripal_views_integration_form_validate($form, &$form_state) {
  843. $name_array = explode(" ", $form_state['values']['row_name']);
  844. $mview_id = $form_state['values']['mview_id'];
  845. $table_name = $form_state['values']['table_name'];
  846. // if (count($name_array) > 1) {
  847. // form_set_error($form_state['values']['row_name'], 'The View type name must be a single word only.');
  848. // }
  849. if ($mview_id and $table_name) {
  850. form_set_error('mview_id', 'Please select either a materialized view or a Chado table but not both');
  851. }
  852. if (!$mview_id and !$table_name) {
  853. form_set_error('mview_id', 'Please select either a materialized view or a Chado table');
  854. }
  855. // Ensure that users don't override the default integrations
  856. if ($form_state['values']['row_priority'] >= 9) {
  857. form_set_error('row_priority', 'A priority of 10 or 9 is reserved for default tripal '
  858. .'views integrations created by core modules. Please set the priority between '
  859. .'0 and -10 to ensure your changes are used rather over the defaults.');
  860. }
  861. // TODO: do we need to require that a handler be set for each field and each type of handler?
  862. }
  863. /**
  864. * Purpose: inserts or updates the record in the tripal views integration
  865. * tables. This function is only called if validation is passed.
  866. *
  867. * @param $form
  868. * The form object which is passed automatically by drupal
  869. *
  870. * @param $form_state
  871. * The form state pbject which is passed automatically by drupal
  872. *
  873. * @ingroup tripal_views_integration
  874. */
  875. function tripal_views_integration_form_submit($form, &$form_state) {
  876. $name = $form_state['values']['row_name'];
  877. $mview_id = $form_state['values']['mview_id'];
  878. $table_name = $form_state['values']['table_name'];
  879. $setup_id = $form_state['values']['setup_id'];
  880. $priority = $form_state['values']['row_priority'];
  881. $comment = $form_state['values']['row_description'];
  882. // get details about this mview
  883. if ($mview_id) {
  884. // D7 TODO: Check DBTNG changes work
  885. $sql = "SELECT * FROM {tripal_mviews} WHERE mview_id = :id";
  886. $mview = db_query($sql, array(':id' => $mview_id));
  887. $mview = $mview->fetchObject();
  888. $table_name = $mview->mv_table;
  889. $table_id = $mview_id;
  890. $type = 'mview';
  891. }
  892. else {
  893. $type = 'chado';
  894. $table_id = $table_name;
  895. }
  896. // If this is for a materialized view then we want to add/update that record
  897. $tripal_views_record = array();
  898. if ($mview_id) {
  899. // get details about this mview
  900. // D7 TODO: Check DBTNG changes work
  901. $sql = "SELECT * FROM {tripal_mviews} WHERE mview_id = :id";
  902. $mview = db_query($sql, array(':id' => $mview_id));
  903. $mview = $mview->fetchObject();
  904. // build the record for insert/update
  905. $tripal_views_record = array(
  906. 'mview_id' => $mview_id,
  907. 'table_name' => $mview->mv_table,
  908. 'name' => $name,
  909. 'priority' => $priority,
  910. 'comment' => $comment,
  911. 'base_table' => $form_state['values']['base_table']
  912. );
  913. }
  914. // if a chado table then...
  915. else {
  916. // build the record for insert/update
  917. $tripal_views_record = array(
  918. 'table_name' => $table_name,
  919. 'name' => $name,
  920. 'priority' => $priority,
  921. 'comment' => $comment,
  922. 'base_table' => $form_state['values']['base_table']
  923. );
  924. }
  925. // perform the insert or update
  926. if (!$setup_id) { // this is an insert
  927. if (!drupal_write_record('tripal_views', $tripal_views_record)) {
  928. drupal_set_message(t("Failed to add record."), 'error');
  929. return;
  930. }
  931. }
  932. else { // this is an update
  933. // check to see if it was specified to create a new integration
  934. if ($form_state['values']['new_integration']) {
  935. $setup_id = NULL;
  936. if (!drupal_write_record('tripal_views', $tripal_views_record)) {
  937. drupal_set_message(t("Failed to add record."), 'error');
  938. return;
  939. }
  940. }
  941. else {
  942. $tripal_views_record['setup_id'] = $setup_id;
  943. if (!drupal_write_record('tripal_views', $tripal_views_record, array('setup_id'))) {
  944. drupal_set_message(t("Failed to update record."), 'error');
  945. return;
  946. }
  947. }
  948. }
  949. // if this is an update then clean out the existing joins and handlers so we can add new ones
  950. if ($setup_id) {
  951. db_query("DELETE FROM {tripal_views_field} WHERE setup_id = :setup", array(':setup' => $setup_id));
  952. db_query("DELETE FROM {tripal_views_join} WHERE setup_id = :setup", array(':setup' => $setup_id));
  953. db_query("DELETE FROM {tripal_views_handlers} WHERE setup_id = :setup", array(':setup' => $setup_id));
  954. }
  955. // iterate through the columns of the form and add
  956. // the joins if provided, and the handlers
  957. $i = 1;
  958. foreach (unserialize($form_state['values']['field_types']) as $key => $value) {
  959. // add the field definition
  960. $view_field_record = array(
  961. 'setup_id' => $tripal_views_record['setup_id'],
  962. 'column_name' => $key,
  963. 'name' => $form_state['values']["fields_readable_name_$table_id-$i"],
  964. 'description' => $form_state['values']["fields_description_$table_id-$i"],
  965. 'type' => $value,
  966. );
  967. drupal_write_record('tripal_views_field', $view_field_record);
  968. // first add the join if it exists
  969. $left_table = $form_state['values']["fields_join_$table_id-$i"];
  970. $left_column = $form_state['values']["fields_join_column_$table_id-$i"];
  971. if ($left_column) {
  972. if ($mview_id) {
  973. $base_table = $mview->mv_table;
  974. }
  975. else {
  976. $base_table = $table_name;
  977. }
  978. $view_join_record = array(
  979. 'setup_id' => $tripal_views_record['setup_id'],
  980. 'base_table' => $base_table,
  981. 'base_field' => $key,
  982. 'left_table' => $left_table,
  983. 'left_field' => $left_column,
  984. 'handler' => $form_state['values']["fields_join_handler_$table_id-$i"],
  985. );
  986. // write the new joins to the database
  987. drupal_write_record('tripal_views_join', $view_join_record);
  988. }
  989. // add the hanlders
  990. $handlers = array('filter', 'field', 'sort', 'argument', 'join', 'relationship');
  991. foreach ($handlers as $handler) {
  992. $handler_name = $form_state['values']["fields_" . $handler . "_handler_$table_id-$i"];
  993. if ($handler_name) {
  994. $handler_record = array(
  995. 'setup_id' => $tripal_views_record['setup_id'],
  996. 'column_name' => $key,
  997. 'handler_type' => $handler,
  998. 'handler_name' => $handler_name,
  999. );
  1000. drupal_write_record('tripal_views_handlers', $handler_record);
  1001. }
  1002. }
  1003. $i++;
  1004. }
  1005. if ($setup_id) {
  1006. drupal_set_message(t('Record Updated'));
  1007. }
  1008. else {
  1009. drupal_set_message(t('Record Added'));
  1010. }
  1011. $form_state['redirect'] = 'admin/tripal/views/integration/list';
  1012. // now clear all the caches so that Drupal views picks up our chages
  1013. views_invalidate_cache();
  1014. }
  1015. /**
  1016. * Purpose: this function queries all modules currently enabled on the site
  1017. * looking for custom handlers and returns a list of all available handerls.
  1018. * The base View handlers are also included.
  1019. *
  1020. * @return
  1021. * Returns an array of handler names
  1022. *
  1023. * @ingroup tripal_views_integration
  1024. */
  1025. function tripal_views_integration_discover_handlers() {
  1026. $handlers = array();
  1027. // Get handlers from all modules.
  1028. foreach (module_implements('views_handlers') as $module) {
  1029. $function = $module . '_views_handlers';
  1030. $result = $function();
  1031. if (!is_array($result)) {
  1032. continue;
  1033. }
  1034. foreach ($result['handlers'] as $handler => $parent) {
  1035. $handlers[] = $handler;
  1036. }
  1037. }
  1038. // these handlers are hard coded because I could not
  1039. // get the views_handlers() function to be called
  1040. // in the code above. However, we will be creating
  1041. // Chado wrappers for many of these and once that work
  1042. // is done these will no longer be needed.
  1043. // argument handlers
  1044. $handlers[] = 'views_handler_argument';
  1045. $handlers[] = 'views_handler_argument_numeric';
  1046. $handlers[] = 'views_handler_argument_formula';
  1047. $handlers[] = 'views_handler_argument_date';
  1048. $handlers[] = 'views_handler_argument_string';
  1049. $handlers[] = 'views_handler_argument_many_to_one';
  1050. $handlers[] = 'views_handler_argument_null';
  1051. // field handlers
  1052. $handlers[] = 'views_handler_field';
  1053. $handlers[] = 'views_handler_field_date';
  1054. $handlers[] = 'views_handler_field_boolean';
  1055. $handlers[] = 'views_handler_field_markup';
  1056. $handlers[] = 'views_handler_field_xss';
  1057. $handlers[] = 'views_handler_field_url';
  1058. $handlers[] = 'views_handler_field_file_size';
  1059. $handlers[] = 'views_handler_field_prerender_list';
  1060. $handlers[] = 'views_handler_field_numeric';
  1061. $handlers[] = 'views_handler_field_custom';
  1062. $handlers[] = 'views_handler_field_counter';
  1063. // filter handlers
  1064. $handlers[] = 'views_handler_filter';
  1065. $handlers[] = 'views_handler_filter_equality';
  1066. $handlers[] = 'views_handler_filter_string';
  1067. $handlers[] = 'views_handler_filter_boolean_operator';
  1068. $handlers[] = 'views_handler_filter_boolean_operator_string';
  1069. $handlers[] = 'views_handler_filter_in_operator';
  1070. $handlers[] = 'views_handler_filter_numeric';
  1071. $handlers[] = 'views_handler_filter_float';
  1072. $handlers[] = 'views_handler_filter_date';
  1073. $handlers[] = 'views_handler_filter_many_to_one';
  1074. // relationship handlers
  1075. $handlers[] = 'views_handler_relationship';
  1076. // sort handlers
  1077. $handlers[] = 'views_handler_sort';
  1078. $handlers[] = 'views_handler_sort_formula';
  1079. $handlers[] = 'views_handler_sort_date';
  1080. $handlers[] = 'views_handler_sort_menu_hierarchy';
  1081. $handlers[] = 'views_handler_sort_random';
  1082. // join handler
  1083. $handlers[] = 'views_join';
  1084. return $handlers;
  1085. }
  1086. /*
  1087. * Ajax Callback: Tripal Views Integration Form
  1088. * Replaces the entire fields table when the table or materialized view is set/changed
  1089. */
  1090. function tripal_views_integration_ajax_view_setup_table($form, $form_state) {
  1091. return $form['view_setup_table'];
  1092. }
  1093. /*
  1094. * Ajax Callback: Tripal Views Integration Form
  1095. * Replaces the join db field dropdown when the join table dropdown is changed
  1096. */
  1097. function tripal_views_integration_ajax_join_field($form, $form_state) {
  1098. // Determine which row we are dealing with from the name of the triggering element
  1099. if (preg_match('/fields_join_(\w+-\d+)/', $form_state['triggering_element']['#name'], $matches)) {
  1100. $field = $matches[1];
  1101. $join_field = 'fields_join_column_' . $matches[1];
  1102. // return the form element to be updated
  1103. return $form['view_setup_table'][$field]['column-3'][$join_field];
  1104. }
  1105. else {
  1106. watchdog('tripal_views', 'Tripal Views Integration Ajax failed due to being unable to determine which row needs updating', array(), WATCHDOG_ERROR);
  1107. return $form;
  1108. }
  1109. }