181 lines
6.7 KiB
PHP
181 lines
6.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
*/
|
|
|
|
function theme_stormorganization_list($header, $organizations) {
|
|
drupal_add_css(drupal_get_path('module', 'storm') .'/storm.css', 'module');
|
|
|
|
$rows = array();
|
|
$countries = storm_attributes_bydomain('Country');
|
|
foreach ($organizations as $key => $organization) {
|
|
$rows[] = array(
|
|
l($organization->title, 'node/'. $organization->nid),
|
|
check_plain($countries['values'][$organization->country]),
|
|
array(
|
|
'data' => storm_icon_edit_node($organization, $_GET) .' '. storm_icon_delete_node($organization, $_GET),
|
|
'class' => 'storm_list_operations',
|
|
),
|
|
);
|
|
}
|
|
$o = theme('table', $header, $rows, array('id' => 'stormorganizations'));
|
|
return $o;
|
|
}
|
|
|
|
function theme_stormorganization_view($node, $teaser = FALSE, $page = FALSE) {
|
|
$node = node_prepare($node, $teaser);
|
|
$l_pos = 1; // Used to increase the link position number (see issue 814820)
|
|
|
|
$node->content['links'] = array(
|
|
'#prefix' => '<div class="stormlinks"><dl>',
|
|
'#suffix' => '</dl></div>',
|
|
'#weight' => -25,
|
|
);
|
|
|
|
$node->content['links']['people'] = theme('storm_link', 'stormorganization', 'stormperson', $node->nid, $l_pos++);
|
|
$node->content['links']['projects'] = theme('storm_link', 'stormorganization', 'stormproject', $node->nid, $l_pos++);
|
|
$node->content['links']['tasks'] = theme('storm_link', 'stormorganization', 'stormtask', $node->nid, $l_pos++);
|
|
$node->content['links']['events'] = theme('storm_link', 'stormorganization', 'stormevent', $node->nid, $l_pos++);
|
|
$node->content['links']['doks'] = theme('storm_link', 'stormorganization', 'stormdok', $node->nid, $l_pos++);
|
|
$node->content['links']['notes'] = theme('storm_link', 'stormorganization', 'stormnote', $node->nid, $l_pos++);
|
|
$node->content['links']['tickets'] = theme('storm_link', 'stormorganization', 'stormticket', $node->nid, $l_pos++);
|
|
$node->content['links']['expenses'] = theme('storm_link', 'stormorganization', 'stormexpense', $node->nid, $l_pos++);
|
|
$node->content['links']['invoices'] = theme('storm_link', 'stormorganization', 'storminvoice', $node->nid, $l_pos++);
|
|
$node->content['links']['timetrackings'] = theme('storm_link', 'stormorganization', 'stormtimetracking', $node->nid, $l_pos++);
|
|
|
|
$node->content['group2'] = array(
|
|
'#prefix' => '<div class="stormfields">',
|
|
'#suffix' => '</div>',
|
|
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group2') : -19,
|
|
);
|
|
|
|
$node->content['group3'] = array(
|
|
'#prefix' => '<div class="stormfields">',
|
|
'#suffix' => '</div>',
|
|
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group3') : -18,
|
|
);
|
|
|
|
$node->content['group3']['address'] = array(
|
|
'#prefix' => '<div class="address">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Address'), check_plain($node->address)),
|
|
'#weight' => 1,
|
|
);
|
|
|
|
$node->content['group3']['city'] = array(
|
|
'#prefix' => '<div class="city">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('City'), check_plain($node->city)),
|
|
'#weight' => 2,
|
|
);
|
|
|
|
$node->content['group3']['provstate'] = array(
|
|
'#prefix' => '<div class="provstate">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Province / State'), check_plain($node->provstate)),
|
|
'#weight' => 3,
|
|
);
|
|
|
|
$node->content['group3'] ['country'] = array(
|
|
'#prefix' => '<div class="country">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Country'), check_plain($node->country)),
|
|
'#weight' => 4,
|
|
);
|
|
|
|
$node->content['group3'] ['zip'] = array(
|
|
'#prefix' => '<div class="zip">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Zip'), check_plain($node->zip)),
|
|
'#weight' => 5,
|
|
);
|
|
|
|
$node->content['group4'] = array(
|
|
'#prefix' => '<div class="stormfields">',
|
|
'#suffix' => '</div>',
|
|
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group4') : -17,
|
|
);
|
|
|
|
$node->content['group4']['phone'] = array(
|
|
'#prefix' => '<div class="phone">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Phone'), check_plain($node->phone)),
|
|
'#weight' => 1,
|
|
);
|
|
|
|
$node->content['group4']['www'] = array(
|
|
'#prefix' => '<div class="www">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('WWW'), l($node->www, 'http://'. $node->www, array('absolute' => TRUE))),
|
|
'#weight' => 2,
|
|
);
|
|
|
|
$node->content['group4']['email'] = array(
|
|
'#prefix' => '<div class="email">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Email'), l($node->email, 'mailto:'. $node->email, array('absolute' => TRUE))),
|
|
'#weight' => 3,
|
|
);
|
|
|
|
$node->content['group5'] = array(
|
|
'#prefix' => '<div class="stormfields">',
|
|
'#suffix' => '</div>',
|
|
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group5') : -16,
|
|
);
|
|
|
|
$node->content['group5']['currency'] = array(
|
|
'#prefix' => '<div class="currency">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Currency'), check_plain($node->currency)),
|
|
'#weight' => 1,
|
|
);
|
|
|
|
$languages = language_list('language', TRUE);
|
|
$languages_options = array();
|
|
foreach ($languages as $language_code => $language) {
|
|
$languages_options[$language_code] = $language->name;
|
|
}
|
|
|
|
$node->content['group5']['language'] = array(
|
|
'#prefix' => '<div class="language">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Language'), check_plain($languages_options[$node->orglanguage])),
|
|
'#weight' => 2,
|
|
);
|
|
|
|
$node->content['group5'] ['taxid'] = array(
|
|
'#prefix' => '<div class="taxid">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Tax ID'), check_plain($node->taxid)),
|
|
'#weight' => 3,
|
|
);
|
|
|
|
$node->content['group_item'] = array(
|
|
'#prefix' => '<div class="stormfields">',
|
|
'#suffix' => '</div>',
|
|
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group_item') : -20,
|
|
);
|
|
$node->content['group_item']['author'] = array(
|
|
'#prefix' => '<div class="author">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Submitted by'), theme('username', $node)),
|
|
'#weight' => 1,
|
|
);
|
|
$node->content['group_item']['created'] = array(
|
|
'#prefix' => '<div class="created">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Created'), _format_small_date($node->created)),
|
|
'#weight' => 2,
|
|
);
|
|
if ($node->changed != $node->created) {
|
|
$node->content['group_item']['modified'] = array(
|
|
'#prefix' => '<div class="modified">',
|
|
'#suffix' => '</div>',
|
|
'#value' => theme('storm_view_item', t('Modified'), _format_small_date($node->changed)),
|
|
'#weight' => 3,
|
|
);
|
|
}
|
|
|
|
return $node;
|
|
}
|