tripal_fields_layout.module 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880
  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. drupal_add_css(drupal_get_path('module','tripal_fields_layout') . '/theme/css/tripal_fields_layout_panels.css');
  28. $entity_type = $form['#entity_type'];
  29. $bundle_name = $form['#bundle'];
  30. // Get the bundle record.
  31. $bundle = db_select('tripal_bundle', 'tb')
  32. ->fields('tb')
  33. ->condition('name', $bundle_name)
  34. ->execute()
  35. ->fetchObject();
  36. if (module_exists('ds')) {
  37. drupal_set_message('Tripal is not compatible with the Display Suite (ds)
  38. module. If you would like to use Tripal-style panels for the layout
  39. of your pages please disable the Display Suite module. If you
  40. prefer to use the Display Suite module then disable the Tripal
  41. Fields Layout (tripal_fields_layout) module.', 'warning');
  42. }
  43. // Add a vertical tab fieldset at the bottom of the
  44. $form['overview_vert_tabs'] = array(
  45. '#type' => 'vertical_tabs'
  46. );
  47. $form['modes']['#group'] = 'overview_vert_tabs';
  48. $form['modes']['#weight'] = 1000;
  49. $form['te_add_panels'] = array(
  50. '#type' => 'fieldset',
  51. '#title' => 'Add a Panel',
  52. '#collapsible' => TRUE,
  53. '#collapsed' => TRUE,
  54. '#group' => 'overview_vert_tabs'
  55. );
  56. // Make sure our default panels are in the database.
  57. _tripal_fields_layout_check_default_field_panels($bundle);
  58. // Add a Panel
  59. tripal_fields_layout_form_field_ui_display_overview_form_panel_add($form, $form_state);
  60. // Arrange Panels
  61. tripal_fields_layout_form_field_ui_display_overview_form_panel_arrange($form, $form_state, $bundle);
  62. // Configure Panels
  63. tripal_fields_layout_form_field_ui_display_overview_form_panel_configure($form, $bundle);
  64. // Now add each panel as a region.
  65. $form['fields']['#regions'] = array();
  66. $panels = db_select('tripal_panels', 'tp')
  67. ->fields('tp')
  68. ->condition('bundle_id', $bundle->id)
  69. ->orderBy('weight', 'ASC')
  70. ->orderBy('label', 'ASC')
  71. ->execute();
  72. $panel_options = array();
  73. while ($panel = $panels->fetchObject()) {
  74. $settings = unserialize($panel->settings);
  75. $form['fields']['#regions'][$panel->name] = array(
  76. 'title' => t($panel->label),
  77. 'message' => t($settings['message']),
  78. );
  79. $panel_options[$panel->name] = $panel->label;
  80. }
  81. // Set the table headers to add a new 'region' column.
  82. $form['fields']['#header'] = array(
  83. t('Field'),
  84. t('Weight'),
  85. t('Parent'),
  86. t('Label'),
  87. array('data' => t('Format'), 'colspan' => 3),
  88. t('Region'),
  89. t('Panel Layout')
  90. );
  91. // Change the region callback for each field to place each field in the
  92. // proper "panel" region. Also, set the default region to be the base region.
  93. $fields = $form['fields'];
  94. $default_panel = 'te_base';
  95. foreach (element_children($fields) as $field_name) {
  96. $field_instance = field_info_instance($entity_type, $field_name, $bundle_name);
  97. $panel_id = db_select('tripal_panel_fields', 'tpf')
  98. ->fields('tpf', array('panel_id'))
  99. ->condition('field_id', $field_instance['id'])
  100. ->execute()
  101. ->fetchField();
  102. if ($panel_id) {
  103. $default_panel = db_select('tripal_panels', 'tp')
  104. ->fields('tp', array('name'))
  105. ->condition('panel_id', $panel_id)
  106. ->execute()
  107. ->fetchField();
  108. }
  109. $form['fields'][$field_name]['#region_callback'] = 'tripal_fields_layout_field_ui_row_region';
  110. $form['fields'][$field_name]['region'] = array(
  111. '#type' => 'select',
  112. '#options' => $panel_options,
  113. '#default_value' => $default_panel,
  114. '#attributes' => array(
  115. 'class' => array('te-field-region'),
  116. )
  117. );
  118. $layout_options = array ('Default', 'Vertical Table', 'Horizontal Table', '[Add a Horizontal Table]', '[Add a Vertical Table]');
  119. $form['fields'][$field_name]['layout'] = array(
  120. '#type' => 'select',
  121. '#options' => $layout_options,
  122. '#default_value' => 'Default',
  123. '#attributes' => array(
  124. 'class' => array('te-field-layout'),
  125. )
  126. );
  127. $form['fields'][$field_name]['#field_instance_id'] = array(
  128. '#type' => 'value',
  129. '#value' => $field_instance['id']
  130. );
  131. }
  132. // Add validate and submit handlers. Rearrange the submit callbacks
  133. // so ours is first.
  134. $form['#validate'][] = 'tripal_fields_layout_field_ui_validate';
  135. $submit = $form['#submit'];
  136. $form['#submit'] = array('tripal_fields_layout_field_ui_submit');
  137. $form['#submit'] = array_merge($form['#submit'], $submit);
  138. //dpm($form);
  139. }
  140. /**
  141. * Add a Panel Form
  142. */
  143. function tripal_fields_layout_form_field_ui_display_overview_form_panel_add (&$form, &$form_state) {
  144. $form_state['input']['panel_label'] = key_exists('panel_label', $form_state['input']) ? $form_state['values']['panel_label'] : NULL;
  145. $form['te_add_panels']['instructions'] = array(
  146. '#type' => 'item',
  147. '#markup' => t('You may add as many panels to your page layout as
  148. desired. Panels can be used to organize fields into categories....')
  149. );
  150. $form['te_add_panels']['panel_name'] = array(
  151. '#type' => 'hidden',
  152. '#title' => 'Panel Name',
  153. '#description' => t('The name is automatically generated for a label. it
  154. contains alphanumeric values and underscores and does not begin with
  155. a number.')
  156. );
  157. $form['te_add_panels']['panel_label'] = array(
  158. '#type' => 'textfield',
  159. '#title' => 'Panel Label',
  160. '#default_value' => '',
  161. '#description' => t('Please provide a human readable label for this
  162. panel. This is the name that will appear to site visitors.')
  163. );
  164. $form['te_add_panels']['add_button'] = array(
  165. '#type' => 'submit',
  166. '#value' => 'Add Panel',
  167. '#name' => 'add-panel-submit'
  168. );
  169. }
  170. /**
  171. * Arrange Panels Form
  172. */
  173. function tripal_fields_layout_form_field_ui_display_overview_form_panel_arrange (&$form, &$form_state, $bundle) {
  174. $form['te_arrange_panels'] = array(
  175. '#type' => 'fieldset',
  176. '#title' => 'Arrange Panels',
  177. '#collapsible' => TRUE,
  178. '#collapsed' => TRUE,
  179. '#group' => 'overview_vert_tabs'
  180. );
  181. $form['te_arrange_panels']['instructions'] = array(
  182. '#type' => 'item',
  183. '#markup' => t('Drag and drop the panel to change its order.')
  184. );
  185. $form['te_arrange_panels']['panel_items']['#tree'] = TRUE;
  186. // Get available panels
  187. $result = db_select('tripal_panels', 'tp')
  188. ->fields('tp', array('panel_id', 'name', 'label', 'weight'))
  189. ->condition('name', 'te_base', '<>')
  190. ->condition('name', 'te_disabled', '<>')
  191. ->condition('bundle_id', $bundle->id)
  192. ->orderby('weight', 'asc')
  193. ->execute();
  194. $has_panel = FALSE;
  195. foreach ($result as $item) {
  196. $form_state['input']['panel_items'][$item->panel_id]['newlabel'] = key_exists($item->panel_id, $form_state['input']) && $form_state['input'][$item->panel_id]['newlabel'] ? $form_state['values']['panel_items'][$item->panel_id]['newlabel'] : NULL;
  197. $form['te_arrange_panels']['panel_items'][$item->panel_id] = array(
  198. 'label' => array(
  199. '#markup' => check_plain($item->label),
  200. ),
  201. 'weight' => array(
  202. '#type' => 'weight',
  203. '#title' => t('Weight'),
  204. '#default_value' => $item->weight,
  205. '#delta' => 50,
  206. '#title_display' => 'invisible',
  207. ),
  208. 'newlabel' => array(
  209. '#type' => 'textfield',
  210. '#default_value' => '',
  211. '#size' => 10
  212. ),
  213. 'rename' => array(
  214. '#type' => 'submit',
  215. '#value' => 'Rename',
  216. '#name' => "arrange-panel-rename-$item->panel_id",
  217. ),
  218. 'remove' => array(
  219. '#type' => 'submit',
  220. '#value' => 'Remove',
  221. '#name' => "arrange-panel-remove-$item->panel_id",
  222. )
  223. );
  224. $has_panel = TRUE;
  225. }
  226. if ($has_panel) {
  227. $form['te_arrange_panels']['panel_items']['#theme_wrappers'] = array('tripal_fields_layout_form_arrange_panels');
  228. $form['te_arrange_panels']['save_button'] = array(
  229. '#type' => 'submit',
  230. '#value' => 'Save Panel Order',
  231. '#name' => 'order-panel-submit'
  232. );
  233. }
  234. else {
  235. $form['te_arrange_panels']['instructions']['#markup'] = t('You need to add some panel first.');
  236. }
  237. }
  238. /**
  239. * Configure Panels Form
  240. */
  241. function tripal_fields_layout_form_field_ui_display_overview_form_panel_configure (&$form, $bundle) {
  242. $form['te_configure_panels'] = array(
  243. '#type' => 'fieldset',
  244. '#title' => 'Configure Panels',
  245. '#collapsible' => TRUE,
  246. '#collapsed' => TRUE,
  247. '#group' => 'overview_vert_tabs'
  248. );
  249. $form['te_configure_panels']['instructions'] = array(
  250. '#type' => 'item',
  251. '#markup' => t('Group fields into a horizontal or vertical table.')
  252. );
  253. $form['te_configure_panels']['panel_items']['#tree'] = TRUE;
  254. // Get available panels
  255. $panels = db_select('tripal_panels', 'tp')
  256. ->fields('tp', array('panel_id', 'name', 'label', 'weight', 'settings'))
  257. ->condition('name', 'te_disabled', '<>')
  258. ->condition('bundle_id', $bundle->id)
  259. ->orderby('weight', 'asc')
  260. ->execute();
  261. $has_panel = FALSE;
  262. foreach ($panels as $panel) {
  263. $panel_settings = unserialize($panel->settings);
  264. $hz_table = key_exists('hz_table', $panel_settings) ? $panel_settings['hz_table'] : array();
  265. $vt_table = key_exists('vt_table', $panel_settings) ? $panel_settings['vt_table'] : array();
  266. $form['te_configure_panels']['panel_items'][$panel->panel_id] = array(
  267. '#type' => 'fieldset',
  268. '#title' => check_plain($panel->label),
  269. '#collapsible' => TRUE,
  270. '#collapsed' => FALSE,
  271. );
  272. //Add fields to each panel for changing configuration
  273. $fields = db_select('tripal_panel_fields', 'tpf')
  274. ->fields('tpf', array('field_id'))
  275. ->condition('panel_id', $panel->panel_id)
  276. ->execute();
  277. $has_field = FALSE;
  278. foreach ($fields AS $field) {
  279. $field_obj = db_select('field_config_instance', 'tci')
  280. ->fields('tci', array('field_name','data'))
  281. ->condition('id', $field->field_id)
  282. ->execute()
  283. ->fetchObject();
  284. $field_arr = unserialize($field_obj->data);
  285. $fname = $field_obj->field_name;
  286. if($fname == 'featureprop') {
  287. continue;
  288. }
  289. $flable = $field_arr['label'];
  290. $form['te_configure_panels']['panel_items'][$panel->panel_id][$fname] = array(
  291. '#type' => 'item',
  292. '#title' => $flable,
  293. );
  294. $default_value = 0;
  295. if (in_array($fname, $hz_table)) {
  296. $default_value = 1;
  297. }
  298. else if (in_array($fname, $vt_table)) {
  299. $default_value = 2;
  300. }
  301. $form['te_configure_panels']['panel_items'][$panel->panel_id][$fname]['table_group'] = array(
  302. '#type' => 'radios',
  303. '#options' => array(
  304. 0 => 'No Group',
  305. 1 => 'Horizontal Table',
  306. 2 => 'Vertical Table'
  307. ),
  308. '#default_value' => $default_value,
  309. );
  310. $has_field = TRUE;
  311. }
  312. if (!$has_field) {
  313. $form['te_configure_panels']['panel_items'][$panel->panel_id]['no_field'] = array(
  314. '#markup' => 'No field in this panel.',
  315. );
  316. } else {
  317. $form['te_configure_panels']['panel_items'][$panel->panel_id]['#theme_wrappers'] = array('tripal_fields_layout_form_configure_panels');
  318. }
  319. $has_panel = TRUE;
  320. }
  321. if ($has_panel) {
  322. $form['te_configure_panels']['save_button'] = array(
  323. '#type' => 'submit',
  324. '#value' => 'Save Panel Configuration',
  325. '#name' => 'configure-panel-submit'
  326. );
  327. }
  328. else {
  329. $form['te_configure_panels']['instructions']['#markup'] = t('You need to add some panel first.');
  330. }
  331. }
  332. /**
  333. * A helper function for checking if the default panels are in the database.
  334. */
  335. function _tripal_fields_layout_check_default_field_panels($bundle) {
  336. // Make sure we have records for our default regions: te_base and te_hidden.
  337. // First check if the base region is in the database. If not, add it.
  338. $te_base = db_select('tripal_panels', 'tp')
  339. ->fields('tp')
  340. ->condition('name', 'te_base')
  341. ->condition('bundle_id', $bundle->id)
  342. ->execute()
  343. ->fetchObject();
  344. if (!$te_base) {
  345. $settings = array(
  346. '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.',
  347. );
  348. db_insert('tripal_panels')
  349. ->fields(array(
  350. 'bundle_id' => $bundle->id,
  351. 'name' => 'te_base',
  352. 'label' => 'Base Content',
  353. 'settings' => serialize($settings),
  354. 'weight' => -9999999
  355. ))
  356. ->execute();
  357. }
  358. // Now add all fields to the default region if they are not assigned
  359. $panel_id = db_select('tripal_panels', 'tp')
  360. ->fields('tp', array('panel_id'))
  361. ->condition('name', 'te_base')
  362. ->condition('bundle_id', $bundle->id)
  363. ->execute()
  364. ->fetchField();
  365. if(property_exists($bundle, 'type')) {
  366. $fields = db_select('field_config_instance', 'fci')
  367. ->fields('fci', array('id'))
  368. ->condition('entity_type', $bundle->type)
  369. ->condition('bundle', $bundle->name)
  370. ->execute();
  371. foreach($fields AS $field) {
  372. $penal_field_id = db_select('tripal_panel_fields', 'tpf')
  373. ->fields('tpf', array('panel_field_id'))
  374. ->condition('field_id', $field->id)
  375. ->execute()
  376. ->fetchField();
  377. if (!$penal_field_id) {
  378. db_insert('tripal_panel_fields')
  379. ->fields(array(
  380. 'panel_id' => $panel_id,
  381. 'field_id' => $field->id
  382. ))
  383. ->execute();
  384. }
  385. }
  386. }
  387. // Next check if the hidden region is in the database. If not, add it.
  388. $te_base = db_select('tripal_panels', 'tp')
  389. ->fields('tp')
  390. ->condition('name', 'te_disabled')
  391. ->condition('bundle_id', $bundle->id)
  392. ->execute()
  393. ->fetchObject();
  394. if (!$te_base) {
  395. $settings = array(
  396. 'message' => 'Place field here to hide them from display.',
  397. );
  398. db_insert('tripal_panels')
  399. ->fields(array(
  400. 'bundle_id' => $bundle->id,
  401. 'name' => 'te_disabled',
  402. 'label' => 'Disabled',
  403. 'settings' => serialize($settings),
  404. 'weight' => 9999999
  405. ))
  406. ->execute();
  407. }
  408. }
  409. /**
  410. * Returns the region to which a row on the Field UI page belongs.
  411. *
  412. * @param $row
  413. * The current row that is being rendered in the Field UI page.
  414. */
  415. function tripal_fields_layout_field_ui_row_region($row) {
  416. $default_panel = 'te_base';
  417. $panel = '';
  418. $field_instance_id = $row['#field_instance_id']['#value'];
  419. // Get panel_id
  420. $panel_id = db_select('tripal_panel_fields', 'tpf')
  421. ->fields('tpf', array('panel_id'))
  422. ->condition('field_id', $field_instance_id)
  423. ->execute()
  424. ->fetchField();
  425. // Get panel name
  426. if ($panel_id) {
  427. $panel = db_select('tripal_panels', 'tp')
  428. ->fields('tp', array('name'))
  429. ->condition('panel_id', $panel_id)
  430. ->execute()
  431. ->fetchField();
  432. }
  433. // First get the panel
  434. if (!$panel) {
  435. $panel = $default_panel;
  436. }
  437. return $panel;
  438. }
  439. /**
  440. * Validates the field UI form to ensure proper panel assignments.
  441. *
  442. * @param $form
  443. * @param $form_state
  444. */
  445. function tripal_fields_layout_field_ui_validate($form, &$form_state) {
  446. }
  447. /**
  448. * Responds to a submit from the field UI form for saving panel assignments.
  449. *
  450. * @param $form
  451. * @param $form_state
  452. */
  453. function tripal_fields_layout_field_ui_submit($form, &$form_state) {
  454. // Add a panel
  455. if ($form_state ['clicked_button'] ['#name'] == 'add-panel-submit') {
  456. tripal_fields_layout_action_add_panel($form, $form_state);
  457. }
  458. // Order panels
  459. else if ($form_state['clicked_button'] ['#name'] == 'order-panel-submit') {
  460. tripal_fields_layout_action_order_panels($form, $form_state);
  461. }
  462. // Rename a panel
  463. else if (preg_match('/^arrange-panel-rename-/', $form_state ['clicked_button'] ['#name'])) {
  464. tripal_fields_layout_action_rename_panel ($form, $form_state);
  465. }
  466. // Remove a panel
  467. else if (preg_match('/^arrange-panel-remove-/', $form_state ['clicked_button'] ['#name'])) {
  468. tripal_fields_layout_action_remove_panel ($form_state);
  469. }
  470. // Configure panels
  471. else if ($form_state['clicked_button'] ['#name'] == 'configure-panel-submit') {
  472. tripal_fields_layout_action_configure_panels($form, $form_state);
  473. }
  474. // Save fields for each panel
  475. else if ($form_state['clicked_button'] ['#name'] == 'op') {
  476. $bundle = $form_state['build_info']['args'][1];
  477. $fields = $form_state['values']['fields'];
  478. foreach($fields AS $field_name => $field_data){
  479. // Get field instance id
  480. $field_instance_id = $form['fields'][$field_name]['#field_instance_id']['#value'];
  481. // Get region panel_id
  482. $region = $field_data['region'];
  483. $panel_id = db_select('tripal_panels', 'tp')
  484. ->fields('tp', array('panel_id'))
  485. ->condition('name', $region)
  486. ->condition('bundle_id', $bundle->id)
  487. ->execute()
  488. ->fetchField();
  489. // Save
  490. $penal_field_id = db_select('tripal_panel_fields', 'tpf')
  491. ->fields('tpf', array('panel_field_id'))
  492. ->condition('field_id', $field_instance_id)
  493. ->execute()
  494. ->fetchField();
  495. if ($penal_field_id) {
  496. db_update('tripal_panel_fields')
  497. ->fields(array(
  498. 'panel_id' => $panel_id,
  499. ))
  500. ->condition('panel_field_id', $penal_field_id)
  501. ->execute();
  502. }
  503. else {
  504. db_insert('tripal_panel_fields')
  505. ->fields(array(
  506. 'panel_id' => $panel_id,
  507. 'field_id' => $field_instance_id
  508. ))
  509. ->execute();
  510. }
  511. }
  512. }
  513. }
  514. /**
  515. * Add a new panel
  516. */
  517. function tripal_fields_layout_action_add_panel (&$form, &$form_state) {
  518. // Check if a panel label is provided
  519. $label = $form_state ['values'] ['panel_label'];
  520. if (! $label) {
  521. form_set_error('panel_label', t ("Please provide a label for the new panel."));
  522. }
  523. // Generate a valide panel name using the label.
  524. // i.e. removing leading numbers and spaces
  525. $name = strtolower(preg_replace ('/^\d|\s+/', '_', $label));
  526. $bundle = $form_state['build_info']['args'][1];
  527. $name_exists = db_select('tripal_panels', 'tp')
  528. ->fields('tp', array('panel_id'))
  529. ->condition('name', $name)
  530. ->condition('bundle_id', $bundle->id)
  531. ->execute()
  532. ->fetchField();
  533. if ($name_exists) {
  534. form_set_error('panel_label', t('The name is used by another panel. Please use a different label.'));
  535. }
  536. else {
  537. $form_state ['values'] ['panel_name'] = $name;
  538. $bundle_id = $form_state['build_info']['args'][1]->id;
  539. $name = $form_state['values']['panel_name'];
  540. $label = $form_state['values']['panel_label'];
  541. $settings = array(
  542. 'message' => 'Place field in this panel.',
  543. );
  544. db_insert('tripal_panels')
  545. ->fields(array(
  546. 'bundle_id' => $bundle_id,
  547. 'name' => $name,
  548. 'label' => $label,
  549. 'settings' => serialize($settings),
  550. 'weight' => 0
  551. ))
  552. ->execute();
  553. form_set_value($form['te_add_panels']['panel_label'], '', $form_state);
  554. }
  555. }
  556. /**
  557. * Rename panel
  558. */
  559. function tripal_fields_layout_action_rename_panel (&$form, &$form_state) {
  560. $button = $form_state ['triggering_element'] ['#name'];
  561. $panel_id = str_replace ('arrange-panel-rename-', '', $button);
  562. $newlabel = $form_state['values']['panel_items'][$panel_id]['newlabel'];
  563. if (!trim($newlabel)) {
  564. form_set_error ('panel_label', t ("Please provide a label to rename a panel.") );
  565. }
  566. else {
  567. db_update('tripal_panels')
  568. ->fields(array(
  569. 'label' => $newlabel,
  570. 'name' => strtolower(preg_replace ('/^\d|\s+/', '_', $newlabel))
  571. ))
  572. ->condition('panel_id', $panel_id)
  573. ->execute();
  574. form_set_value($form['te_arrange_panels']['panel_items'][$panel_id]['newlabel'], '', $form_state);
  575. }
  576. }
  577. /**
  578. * Remove panel
  579. */
  580. function tripal_fields_layout_action_remove_panel (&$form_state) {
  581. $button = $form_state ['triggering_element'] ['#name'];
  582. $panel_id = str_replace ('arrange-panel-remove-', '', $button);
  583. db_delete('tripal_panels')
  584. ->condition ('panel_id', $panel_id)
  585. ->execute();
  586. db_delete('tripal_panel_fields')
  587. ->condition ('panel_id', $panel_id)
  588. ->execute();
  589. }
  590. /**
  591. * Order panel
  592. */
  593. function tripal_fields_layout_action_order_panels (&$form, &$form_state) {
  594. $panels = $form_state['values']['panel_items'];
  595. foreach ($panels AS $id => $panel) {
  596. if (key_exists('weight', $panel)) {
  597. db_query('UPDATE {tripal_panels} SET weight = :weight WHERE panel_id = :id',
  598. array(
  599. ':weight' => $panel['weight'],
  600. ':id' => $id
  601. )
  602. );
  603. }
  604. }
  605. }
  606. /**
  607. * Theme the Arrange Panels as a draggable table
  608. *
  609. * @param unknown $variables
  610. * @return unknown
  611. */
  612. function theme_tripal_fields_layout_form_arrange_panels ($variables) {
  613. $element = $variables['element'];
  614. $rows = array();
  615. foreach (element_children($element) as $id) {
  616. // Add a custom class that can be identified by 'drupal_add_tabledrag'
  617. $element[$id]['weight']['#attributes']['class'] = array('tripal_panel-item-weight');
  618. $element[$id]['label']['#printed'] = FALSE;
  619. $element[$id]['weight']['#printed'] = FALSE;
  620. $element[$id]['newlabel']['#printed'] = FALSE;
  621. $element[$id]['rename']['#printed'] = FALSE;
  622. $element[$id]['remove']['#printed'] = FALSE;
  623. $rows[] = array(
  624. 'data' => array(
  625. drupal_render($element[$id]['label']),
  626. drupal_render($element[$id]['weight']),
  627. drupal_render($element[$id]['newlabel']),
  628. drupal_render($element[$id]['rename']),
  629. drupal_render($element[$id]['remove'])
  630. ),
  631. // Add draggable to each row to support the tabledrag behaviour
  632. 'class' => array('draggable'),
  633. );
  634. }
  635. // Create table header
  636. $header = array(t('Panel'), t('Weight'), array('data' => t('Rename'), 'colspan' => 2), t('Action'));
  637. // Create a unique id for drupal_add_tabledrag() to find the table object
  638. $table_id = 'tripal_panel-arrange_panel_table';
  639. // Create output
  640. $output = '';
  641. if (count($rows) > 0) {
  642. $output = theme('table', array(
  643. 'header' => $header,
  644. 'rows' => $rows,
  645. 'attributes' => array('id' => $table_id),
  646. ));
  647. }
  648. // Call to the drupal_add_tabledrag
  649. drupal_add_tabledrag($table_id, 'order', 'sibling', 'tripal_panel-item-weight');
  650. return $output;
  651. }
  652. /**
  653. * Configure panels
  654. */
  655. function tripal_fields_layout_action_configure_panels (&$form, &$form_state) {
  656. $panels = $form_state['values']['panel_items'];
  657. foreach ($panels AS $id => $panel) {
  658. $hz_table = array();
  659. $vt_table = array();
  660. foreach($panel AS $key => $value) {
  661. if (is_array($value) && key_exists('table_group', $value)) {
  662. if ($value['table_group'] == 1) {
  663. $hz_table[] = $key;
  664. }
  665. else if ($value['table_group'] == 2) {
  666. $vt_table[] = $key;
  667. }
  668. }
  669. }
  670. $panel_settings = db_select('tripal_panels', 'tp')
  671. ->fields('tp', array('settings'))
  672. ->condition('panel_id', $id)
  673. ->execute()
  674. ->fetchField();
  675. $new_settings = unserialize($panel_settings);
  676. $new_settings['hz_table'] = $hz_table;
  677. $new_settings['vt_table'] = $vt_table;
  678. db_update('tripal_panels')
  679. ->fields(array(
  680. 'settings' => serialize($new_settings)
  681. ))
  682. ->condition('panel_id', $id)
  683. ->execute();
  684. }
  685. }
  686. /**
  687. * Theme the Configure Panels as a table
  688. *
  689. * @param unknown $variables
  690. * @return unknown
  691. */
  692. function theme_tripal_fields_layout_form_configure_panels ($variables) {
  693. $element = $variables['element'];
  694. $rows = array();
  695. foreach (element_children($element) as $id) {
  696. $element[$id]['table_group']['#printed'] = FALSE;
  697. $rows[] = array(
  698. 'data' => array(
  699. $element[$id]['#title'],
  700. drupal_render($element[$id]['table_group']),
  701. ),
  702. );
  703. }
  704. // Create table header
  705. $header = array(t('Field'), t('Table Group'));
  706. // Create a unique id for drupal_add_tabledrag() to find the table object
  707. $table_id = 'tripal_panel-configure_panel_table-' . strtolower(preg_replace('/\s+/', '_', $element['#title']));
  708. $table_class = 'tripal_panel-configure_panel_table';
  709. // Create output
  710. $table = '';
  711. if (count($rows) > 0) {
  712. $table = theme('table', array(
  713. 'header' => $header,
  714. 'rows' => $rows,
  715. 'attributes' => array('id' => $table_id, 'class' => array($table_class)),
  716. ));
  717. }
  718. $collapsible_item = array('element' => array());
  719. $collapsible_item['element']['#children'] = '';
  720. $collapsible_item['element']['#description'] =
  721. '<div id="tripal_fields_layout-panel_configure-fieldset-instruction">
  722. Select a group to organize fields into table(s) in this panel.
  723. <div>'
  724. . $table;
  725. $collapsible_item['element']['#title'] = $element['#title'];
  726. $collapsible_item['element']['#attributes']['class'] = array('tripal_fields_layout-panel_configure-fieldset', 'collapsible');
  727. $output = theme('fieldset', $collapsible_item);
  728. return $output;
  729. }
  730. /**
  731. * Implements hook_theme().
  732. */
  733. function tripal_fields_layout_theme($existing, $type, $theme, $path) {
  734. return array(
  735. 'tripal_fields_layout_form_arrange_panels' => array(
  736. 'render element' => 'element',
  737. ),
  738. 'tripal_fields_layout_form_configure_panels' => array(
  739. 'render element' => 'element',
  740. ),
  741. 'tripal_fields_layout_generic' => array(
  742. 'render element' => 'element',
  743. 'template' => 'tripal_fields_layout_generic',
  744. 'path' => "$path/theme/templates",
  745. ),
  746. );
  747. }
  748. /**
  749. * Implements hook_entity_view.
  750. */
  751. function tripal_fields_layout_entity_view($entity, $type, $view_mode, $langcode) {
  752. switch ($type) {
  753. case 'TripalEntity':
  754. // Use the generic template to render the fields
  755. if ($view_mode == 'full') {
  756. $bundle = db_select('tripal_bundle', 'tb')
  757. ->fields('tb', array('id', 'name', 'label'))
  758. ->condition('name', $entity->bundle)
  759. ->execute()
  760. ->fetchObject();
  761. _tripal_fields_layout_check_default_field_panels($bundle);
  762. $results = db_select('tripal_panels', 'tp')
  763. ->fields('tp', array('panel_id','name', 'label', 'settings'))
  764. ->condition('bundle_id', $bundle->id)
  765. ->orderBy('tp.weight', 'ASC')
  766. ->execute();
  767. $panels = array();
  768. $fields = array();
  769. $disabled_panel_id = 0;
  770. foreach ($results AS $row) {
  771. if ($row->name == 'te_disabled') {
  772. $disabled_panel_id = $row->panel_id;
  773. }
  774. else {
  775. $panels[$row->panel_id] = $row;
  776. $fields[$row->panel_id] = array();
  777. }
  778. }
  779. // Organize fields into panels
  780. foreach (element_children($entity->content) as $field_name) {
  781. $field_instance = field_info_instance ($type, $field_name, $entity->bundle);
  782. // Get default panel_id
  783. $default_panel_id = db_select('tripal_panels', 'tp')
  784. ->fields('tp', array('panel_id'))
  785. ->condition('bundle_id', $bundle->id)
  786. ->condition('name', 'te_base')
  787. ->execute()
  788. ->fetchField();
  789. // Get panel_id for the field
  790. $panel_id = db_select('tripal_panel_fields', 'tpf')
  791. ->fields('tpf', array('panel_id'))
  792. ->condition('field_id', $field_instance['id'])
  793. ->execute()
  794. ->fetchField();
  795. $panel_id = $panel_id ? $panel_id : $default_panel_id;
  796. // Do not show disabled fields
  797. if ($panel_id != $disabled_panel_id) {
  798. $fields[$panel_id][$field_name] = $entity->content[$field_name];
  799. }
  800. // Unset the field
  801. unset ($entity->content[$field_name]);
  802. }
  803. drupal_add_css(drupal_get_path('module','tripal_fields_layout') . '/theme/css/tripal_fields_layout.css');
  804. $entity->content['tripal_fields_layout_generic'] = array(
  805. '#theme' => 'tripal_fields_layout_generic',
  806. '#panels' => $panels,
  807. '#fields' => $fields,
  808. );
  809. }
  810. break;
  811. }
  812. }