tripal_fields_layout.module 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. <?php
  2. /**
  3. *
  4. * Implements hook_form_FORM_ID_alter().
  5. *
  6. * The field_ui_field_edit_form is used for customizing the settings of
  7. * a field attached to an entity.
  8. */
  9. function tripal_fields_layout_form_field_ui_field_edit_form_alter(&$form, &$form_state, $form_id) {
  10. // For entity fields added by Tripal Entities we don't want the
  11. // the end-user to change the cardinality and the required fields
  12. // such that record can't be saved in Chado.
  13. $dbs = tripal_fields_layout_get_db_names_for_published_vocabularies();
  14. if (in_array($form['#instance']['entity_type'], $dbs)) {
  15. $form['field']['cardinality']['#access'] = FALSE;
  16. $form['instance']['required']['#access'] = FALSE;
  17. }
  18. // TODO: don't the the maximum length be larger than the field size.
  19. }
  20. /**
  21. * Implements hook_form_FORM_ID_alter().
  22. *
  23. * The field_ui_display_overview_form is used for formatting the display
  24. * or layout of fields attached to an entity.
  25. */
  26. function tripal_fields_layout_form_field_ui_display_overview_form_alter(&$form, &$form_state, $form_id) {
  27. $entity_type = $form['#entity_type'];
  28. $bundle_name = $form['#bundle'];
  29. // Get the bundle record.
  30. $bundle = db_select('tripal_bundle', 'tb')
  31. ->fields('tb')
  32. ->condition('bundle', $bundle_name)
  33. ->execute()
  34. ->fetchObject();
  35. if (module_exists('ds')) {
  36. drupal_set_message('Tripal is not compatible with the Display Suite (ds)
  37. module. If you would like to use Tripal-style panels for the layout
  38. of your pages please disable the Display Suite module. If you
  39. prefer to use the Display Suite module then disable the Tripal
  40. Fields Layout (tripal_fields_layout) module.', 'warning');
  41. }
  42. // Add a vertical tab fieldset at the bottom of the
  43. $form['overview_vert_tabs'] = array(
  44. '#type' => 'vertical_tabs'
  45. );
  46. $form['modes']['#group'] = 'overview_vert_tabs';
  47. $form['modes']['#weight'] = 1000;
  48. $form['te_add_panels'] = array(
  49. '#type' => 'fieldset',
  50. '#title' => 'Add a Panel',
  51. '#collapsible' => TRUE,
  52. '#collapsed' => TRUE,
  53. '#group' => 'overview_vert_tabs'
  54. );
  55. $form['te_add_panels']['instructions'] = array(
  56. '#type' => 'item',
  57. '#markup' => t('You may add as many panels to your page layout as
  58. desired. Panels can be used to organize fields into categories....')
  59. );
  60. $form['te_add_panels']['panel_name'] = array(
  61. '#type' => 'textfield',
  62. '#title' => 'Panel Name',
  63. '#description' => t('Please provide a computer readable name for this
  64. panel. The name should only contain alphanumeric values and
  65. underscores. It must not begin with a number.')
  66. );
  67. $form['te_add_panels']['panel_label'] = array(
  68. '#type' => 'textfield',
  69. '#title' => 'Panel Label',
  70. '#description' => t('Please provide a human readable label for this
  71. panel. This is the name that will appear to site visitors.')
  72. );
  73. $form['te_add_panels']['add_button'] = array(
  74. '#type' => 'submit',
  75. '#value' => 'Add Panel',
  76. '#name' => 'add-panel-submit'
  77. );
  78. // Layout Panels
  79. $form['te_layout_panels'] = array(
  80. '#type' => 'fieldset',
  81. '#title' => 'Arrange Panels',
  82. '#collapsible' => TRUE,
  83. '#collapsed' => TRUE,
  84. '#group' => 'overview_vert_tabs'
  85. );
  86. $form['te_layout_panels']['instructions'] = array(
  87. '#type' => 'item',
  88. '#markup' => t('Drag and drop the panel to change its order.')
  89. );
  90. $form['te_layout_panels']['panel_items']['#tree'] = TRUE;
  91. // Get available panels
  92. $result = db_select('tripal_panels', 'tp')
  93. ->fields('tp', array('panel_id', 'name', 'label', 'weight'))
  94. ->condition('name', 'te_base', '<>')
  95. ->condition('name', 'te_disabled', '<>')
  96. ->condition('bundle_id', $bundle->id)
  97. ->orderby('weight', 'asc')
  98. ->execute();
  99. $has_panel = FALSE;
  100. foreach ($result as $item) {dpm($item);
  101. $form['te_layout_panels']['panel_items'][$item->panel_id] = array(
  102. 'label' => array(
  103. '#markup' => check_plain($item->label),
  104. ),
  105. 'weight' => array(
  106. '#type' => 'weight',
  107. '#title' => t('Weight'),
  108. '#default_value' => $item->weight,
  109. '#delta' => 50,
  110. '#title_display' => 'invisible',
  111. ),
  112. 'remove' => array(
  113. '#type' => 'button',
  114. '#value' => 'Remove',
  115. '#name' => "arrange-panel-remove-$item->panel_id",
  116. )
  117. );
  118. $has_panel = TRUE;
  119. }
  120. if ($has_panel) {
  121. $form['te_layout_panels']['panel_items']['#theme_wrappers'] = array('tripal_fields_layout_form_draggable_panel_table');
  122. // Now we add our submit button, for submitting the form results.
  123. //
  124. // The 'actions' wrapper used here isn't strictly necessary for tabledrag,
  125. // but is included as a Form API recommended practice.
  126. $form['te_layout_panels']['add_button'] = array(
  127. '#type' => 'submit',
  128. '#value' => 'Save Panel Order',
  129. '#name' => 'order-panel-submit'
  130. );
  131. }
  132. else {
  133. $form['te_layout_panels']['instructions']['#markup'] = t('You need to add some panel first.');
  134. }
  135. // Configure Panels
  136. $form['te_configure_panels'] = array(
  137. '#type' => 'fieldset',
  138. '#title' => 'Configure Panels',
  139. '#collapsible' => TRUE,
  140. '#collapsed' => TRUE,
  141. '#group' => 'overview_vert_tabs'
  142. );
  143. // Make sure our default panels are in the database.
  144. _tripal_fields_layout_check_default_field_panels($bundle);
  145. // Now add each panel as a region.
  146. $form['fields']['#regions'] = array();
  147. $panels = db_select('tripal_panels', 'tp')
  148. ->fields('tp')
  149. ->condition('bundle_id', $bundle->id)
  150. ->orderBy('weight', 'ASC')
  151. ->orderBy('label', 'ASC')
  152. ->execute();
  153. $panel_options = array();
  154. while ($panel = $panels->fetchObject()) {
  155. $settings = unserialize($panel->settings);
  156. $form['fields']['#regions'][$panel->name] = array(
  157. 'title' => t($panel->label),
  158. 'message' => t($settings['message']),
  159. );
  160. $panel_options[$panel->name] = $panel->label;
  161. }
  162. // Set the table headers to add a new 'region' column.
  163. $form['fields']['#header'] = array(
  164. t('Field'),
  165. t('Weight'),
  166. t('Parent'),
  167. t('Label'),
  168. array('data' => t('Format'), 'colspan' => 3),
  169. t('Region'),
  170. );
  171. // Change the region callback for each field to place each field in the
  172. // proper "panel" region. Also, set the default region to be the base region.
  173. $fields = $form['fields'];
  174. $default_panel = 'te_base';
  175. foreach (element_children($fields) as $field_name) {
  176. $field_instance = field_info_instance($entity_type, $field_name, $bundle_name);
  177. $panel_id = db_select('tripal_panel_fields', 'tpf')
  178. ->fields('tpf', array('panel_id'))
  179. ->condition('field_id', $field_instance['id'])
  180. ->execute()
  181. ->fetchField();
  182. if ($panel_id) {
  183. $default_panel = db_select('tripal_panels', 'tp')
  184. ->fields('tp', array('name'))
  185. ->condition('panel_id', $panel_id)
  186. ->execute()
  187. ->fetchField();
  188. }
  189. $form['fields'][$field_name]['#region_callback'] = 'tripal_fields_layout_field_ui_row_region';
  190. $form['fields'][$field_name]['region'] = array(
  191. '#type' => 'select',
  192. '#options' => $panel_options,
  193. '#default_value' => $default_panel,
  194. '#attributes' => array(
  195. 'class' => array('te-field-region'),
  196. )
  197. );
  198. $form['fields'][$field_name]['#field_instance_id'] = array(
  199. '#type' => 'value',
  200. '#value' => $field_instance['id']
  201. );
  202. }
  203. // Add validate and submit handlers. Rearrange the submit callbacks
  204. // so ours is first.
  205. $form['#validate'][] = 'tripal_fields_layout_field_ui_validate';
  206. $submit = $form['#submit'];
  207. $form['#submit'] = array('tripal_fields_layout_field_ui_submit');
  208. $form['#submit'] = array_merge($form['#submit'], $submit);
  209. }
  210. /**
  211. * A helper function for checking if the default panels are in the database.
  212. */
  213. function _tripal_fields_layout_check_default_field_panels($bundle) {
  214. // Make sure we have records for our default regions: te_base and te_hidden.
  215. // First check if the base region is in the database. If not, add it.
  216. $te_base = db_select('tripal_panels', 'tp')
  217. ->fields('tp')
  218. ->condition('name', 'te_base')
  219. ->condition('bundle_id', $bundle->id)
  220. ->execute()
  221. ->fetchObject();
  222. if (!$te_base) {
  223. $settings = array(
  224. 'message' => 'Fields that should appear at the top of each page should be placed in the base panel. These fields are always present and help orient the user by at least indicating the necessary information to uniquely identiy the content.',
  225. );
  226. db_insert('tripal_panels')
  227. ->fields(array(
  228. 'bundle_id' => $bundle->id,
  229. 'name' => 'te_base',
  230. 'label' => 'Base Content',
  231. 'settings' => serialize($settings),
  232. 'weight' => -9999999
  233. ))
  234. ->execute();
  235. }
  236. // Next check if the hidden region is in the database. If not, add it.
  237. $te_base = db_select('tripal_panels', 'tp')
  238. ->fields('tp')
  239. ->condition('name', 'te_disabled')
  240. ->condition('bundle_id', $bundle->id)
  241. ->execute()
  242. ->fetchObject();
  243. if (!$te_base) {
  244. $settings = array(
  245. 'message' => 'Place field here to hide them from display.',
  246. );
  247. db_insert('tripal_panels')
  248. ->fields(array(
  249. 'bundle_id' => $bundle->id,
  250. 'name' => 'te_disabled',
  251. 'label' => 'Disabled',
  252. 'settings' => serialize($settings),
  253. 'weight' => 9999999
  254. ))
  255. ->execute();
  256. }
  257. }
  258. /**
  259. * Returns the region to which a row on the Field UI page belongs.
  260. *
  261. * @param $row
  262. * The current row that is being rendered in the Field UI page.
  263. */
  264. function tripal_fields_layout_field_ui_row_region($row) {
  265. $default_panel = 'te_base';
  266. $panel = '';
  267. $field_instance_id = $row['#field_instance_id']['#value'];
  268. // Get panel_id
  269. $panel_id = db_select('tripal_panel_fields', 'tpf')
  270. ->fields('tpf', array('panel_id'))
  271. ->condition('field_id', $field_instance_id)
  272. ->execute()
  273. ->fetchField();
  274. // Get panel name
  275. if ($panel_id) {
  276. $panel = db_select('tripal_panels', 'tp')
  277. ->fields('tp', array('name'))
  278. ->condition('panel_id', $panel_id)
  279. ->execute()
  280. ->fetchField();
  281. }
  282. // First get the panel
  283. if (!$panel) {
  284. $panel = $default_panel;
  285. }
  286. return $panel;
  287. }
  288. /**
  289. * Validates the field UI form to ensure proper panel assignments.
  290. *
  291. * @param $form
  292. * @param $form_state
  293. */
  294. function tripal_fields_layout_field_ui_validate($form, &$form_state) {
  295. if ($form_state ['clicked_button'] ['#name'] == 'add-panel-submit') {
  296. // Check if a valide panel name is provided
  297. $name = $form_state ['values'] ['panel_name'];
  298. if (! $name) {
  299. form_set_error ( 'panel_name', t ( "Please provide a name for the new panel." ) );
  300. }
  301. else if (preg_match ( '/^\d+/', $name )) {
  302. form_set_error ( 'panel_name', t ( "Panel name must not begin with a number." ) );
  303. }
  304. else if (preg_match ( '/\s+/', $name )) {
  305. form_set_error ( 'panel_name', t ( "Panel name should only contain alphanumeric values and underscores." ) );
  306. }
  307. // Check if a panel label is provided
  308. $label = $form_state ['values'] ['panel_label'];
  309. if (! $label) {
  310. form_set_error ( 'panel_label', t ( "Please provide a label for the new panel." ) );
  311. }
  312. }
  313. else if ($form_state ['clicked_button'] ['#name'] == 'order-panel-submit') {
  314. }
  315. else if ($form_state ['clicked_button'] ['#name'] == 'op') {
  316. }
  317. else if (preg_match('/^arrange-panel-remove-/', $form_state ['clicked_button'] ['#name'])) {
  318. $table = $form['te_layout_panels']['panel_items'];
  319. $button = $form_state ['triggering_element'] ['#name'];
  320. $panel_id = str_replace ('arrange-panel-remove-', '', $button);
  321. db_delete('tripal_panels')
  322. ->condition ('panel_id', $panel_id)
  323. ->execute();
  324. db_delete('tripal_panel_fields')
  325. ->condition ('panel_id', $panel_id)
  326. ->execute();
  327. }
  328. }
  329. /**
  330. * Responds to a submit from the field UI form for saving panel assignments.
  331. *
  332. * @param $form
  333. * @param $form_state
  334. */
  335. function tripal_fields_layout_field_ui_submit($form, &$form_state) {
  336. // Add a new panel
  337. if ($form_state ['clicked_button'] ['#name'] == 'add-panel-submit') {
  338. $bundle_id = $form_state['build_info']['args'][1]->id;
  339. $name = $form_state['values']['panel_name'];
  340. $label = $form_state['values']['panel_label'];
  341. $settings = array(
  342. 'message' => 'Place field in this panel.',
  343. );
  344. db_insert('tripal_panels')
  345. ->fields(array(
  346. 'bundle_id' => $bundle_id,
  347. 'name' => $name,
  348. 'label' => $label,
  349. 'settings' => serialize($settings),
  350. 'weight' => 0
  351. ))
  352. ->execute();
  353. }
  354. // Order panel
  355. else if ($form_state ['clicked_button'] ['#name'] == 'order-panel-submit') {
  356. $panels = $form_state['values']['panel_items'];
  357. foreach ($panels AS $id => $panel) {
  358. db_query(
  359. 'UPDATE {tripal_panels} SET weight = :weight WHERE panel_id = :id',
  360. array(
  361. ':weight' => $panel['weight'],
  362. ':id' => $id
  363. )
  364. );
  365. }
  366. }
  367. // Save field regions
  368. else if ($form_state ['clicked_button'] ['#name'] == 'op') {
  369. $fields = $form_state['values']['fields'];
  370. foreach($fields AS $field_name => $field_data){
  371. // Get field instance id
  372. $field_instance_id = $form['fields'][$field_name]['#field_instance_id']['#value'];
  373. // Get region panel_id
  374. $region = $field_data['region'];
  375. $panel_id = db_select('tripal_panels', 'tp')
  376. ->fields('tp', array('panel_id'))
  377. ->condition('name', $region)
  378. ->execute()
  379. ->fetchField();
  380. // Save
  381. $penal_field_id = db_select('tripal_panel_fields', 'tpf')
  382. ->fields('tpf', array('panel_field_id'))
  383. ->condition('field_id', $field_instance_id)
  384. ->execute()
  385. ->fetchField();
  386. if ($penal_field_id) {
  387. db_update('tripal_panel_fields')
  388. ->fields(array(
  389. 'panel_id' => $panel_id,
  390. ))
  391. ->condition('panel_field_id', $penal_field_id)
  392. ->execute();
  393. }
  394. else {
  395. db_insert('tripal_panel_fields')
  396. ->fields(array(
  397. 'panel_id' => $panel_id,
  398. 'field_id' => $field_instance_id
  399. ))
  400. ->execute();
  401. }
  402. }
  403. }
  404. }
  405. /**
  406. * Theme the Panel Order Table as a draggable table
  407. *
  408. * @param unknown $variables
  409. * @return unknown
  410. */
  411. function theme_tripal_fields_layout_form_draggable_panel_table ($variables) {
  412. $element = $variables['element'];
  413. $rows = array();
  414. foreach (element_children($element) as $id) {
  415. // Add a custom class that can be identified by 'drupal_add_tabledrag'
  416. $element[$id]['weight']['#attributes']['class'] = array('tripal_panel-item-weight');
  417. $element[$id]['label']['#printed'] = FALSE;
  418. $element[$id]['weight']['#printed'] = FALSE;
  419. $element[$id]['remove']['#printed'] = FALSE;
  420. $rows[] = array(
  421. 'data' => array(
  422. drupal_render($element[$id]['label']),
  423. drupal_render($element[$id]['weight']),
  424. drupal_render($element[$id]['remove'])
  425. ),
  426. // Add draggable to each row to support the tabledrag behaviour
  427. 'class' => array('draggable'),
  428. );
  429. }
  430. // Create table header
  431. $header = array(t('Label'), t('Weight'), t('Action'));
  432. // Create a unique id for drupal_add_tabledrag() to find the table object
  433. $table_id = 'tripal_panel-arrange_panel_table';
  434. // Create output
  435. $output = '';
  436. if (count($rows) > 0) {
  437. $output = theme('table', array(
  438. 'header' => $header,
  439. 'rows' => $rows,
  440. 'attributes' => array('id' => $table_id),
  441. ));
  442. }
  443. // Call to the drupal_add_tabledrag
  444. drupal_add_tabledrag($table_id, 'order', 'sibling', 'tripal_panel-item-weight');
  445. return $output;
  446. }
  447. /**
  448. * Implements hook_theme().
  449. */
  450. function tripal_fields_layout_theme($existing, $type, $theme, $path) {
  451. return array(
  452. 'tripal_fields_layout_form_draggable_panel_table' => array(
  453. 'render element' => 'element',
  454. ),
  455. 'tripal_fields_layout_generic' => array(
  456. 'render element' => 'element',
  457. 'template' => 'tripal_fields_layout_generic',
  458. 'path' => "$path/theme/templates",
  459. ),
  460. );
  461. }
  462. /**
  463. * Implements hook_entity_view.
  464. */
  465. function tripal_fields_layout_entity_view($entity, $type, $view_mode, $langcode) {
  466. switch ($type) {
  467. case 'BioData':
  468. // Use the generic template to render the fields
  469. if ($view_mode == 'full') {
  470. $bundle = db_select('tripal_bundle', 'tb')
  471. ->fields('tb', array('id', 'bundle', 'label'))
  472. ->condition('bundle', $entity->bundle)
  473. ->execute()
  474. ->fetchObject();
  475. _tripal_fields_layout_check_default_field_panels($bundle);
  476. $results = db_select('tripal_panels', 'tp')
  477. ->fields('tp', array('panel_id','name', 'label'))
  478. ->condition('bundle_id', $bundle->id)
  479. ->orderBy('tp.weight', 'ASC')
  480. ->execute();
  481. $panels = array();
  482. $fields = array();
  483. $disabled_panel_id = 0;
  484. foreach ($results AS $row) {
  485. if ($row->name == 'te_disabled') {
  486. $disabled_panel_id = $row->panel_id;
  487. }
  488. else {
  489. $panels[$row->panel_id] = $row;
  490. $fields[$row->panel_id] = array();
  491. }
  492. }
  493. // Organize fields into panels
  494. foreach (element_children($entity->content) as $field_name) {
  495. $field_instance = field_info_instance ($type, $field_name, $entity->bundle);
  496. // Get default panel_id
  497. $default_panel_id = db_select('tripal_panels', 'tp')
  498. ->fields('tp', array('panel_id'))
  499. ->condition('bundle_id', $bundle->id)
  500. ->condition('name', 'te_base')
  501. ->execute()
  502. ->fetchField();
  503. // Get panel_id for the field
  504. $panel_id = db_select('tripal_panel_fields', 'tpf')
  505. ->fields('tpf', array('panel_id'))
  506. ->condition('field_id', $field_instance['id'])
  507. ->execute()
  508. ->fetchField();
  509. $panel_id = $panel_id ? $panel_id : $default_panel_id;
  510. // Do not show disabled fields
  511. if ($panel_id != $disabled_panel_id) {
  512. $fields[$panel_id][$field_name] = $entity->content[$field_name];
  513. }
  514. // Unset the field
  515. unset ($entity->content[$field_name]);
  516. }
  517. drupal_add_css(drupal_get_path('module','tripal_fields_layout') . '/theme/css/tripal_fields_layout.css');
  518. $entity->content['tripal_fields_layout_generic'] = array(
  519. '#theme' => 'tripal_fields_layout_generic',
  520. '#panels' => $panels,
  521. '#fields' => $fields,
  522. );
  523. }
  524. break;
  525. }
  526. }