2012-02-06 10:32:57 +04:00
< ? php
$id = isset ( $_ [ 'id' ]) ? $_ [ 'id' ] : '' ;
?>
< div id = " card " >
< div id = " actionbar " >
2012-02-09 22:04:07 +04:00
< a title = " <?php echo $l->t ('Add field'); ?> " class = " svg action " id = " contacts_propertymenu_button " ></ a >
< div id = " contacts_propertymenu " style = " display: none; " >
< ul >
2012-02-06 11:04:06 +04:00
< li >< a data - type = " PHOTO " >< ? php echo $l -> t ( 'Profile picture' ); ?> </a></li>
< li >< a data - type = " ORG " >< ? php echo $l -> t ( 'Organization' ); ?> </a></li>
< li >< a data - type = " NICKNAME " >< ? php echo $l -> t ( 'Nickname' ); ?> </a></li>
< li >< a data - type = " BDAY " >< ? php echo $l -> t ( 'Birthday' ); ?> </a></li>
2012-02-06 10:32:57 +04:00
< li >< a data - type = " TEL " >< ? php echo $l -> t ( 'Phone' ); ?> </a></li>
< li >< a data - type = " EMAIL " >< ? php echo $l -> t ( 'Email' ); ?> </a></li>
< li >< a data - type = " ADR " >< ? php echo $l -> t ( 'Address' ); ?> </a></li>
2012-03-07 19:39:56 +04:00
< li >< a data - type = " NOTE " >< ? php echo $l -> t ( 'Note' ); ?> </a></li>
2012-04-13 01:09:42 +04:00
< li >< a data - type = " CATEGORIES " >< ? php echo $l -> t ( 'Groups' ); ?> </a></li>
2012-02-06 10:32:57 +04:00
</ ul >
2012-02-09 22:04:07 +04:00
</ div >
2012-04-10 23:53:36 +04:00
< img onclick = " Contacts.UI.Card.doExport(); " class = " svg action " id = " contacts_downloadcard " src = " <?php echo image_path('', 'actions/download.svg'); ?> " title = " <?php echo $l->t ('Download contact');?> " />
2012-02-06 10:32:57 +04:00
< img class = " svg action " id = " contacts_deletecard " src = " <?php echo image_path('', 'actions/delete.svg'); ?> " title = " <?php echo $l->t ('Delete contact');?> " />
</ div >
2012-04-03 05:28:12 +04:00
< div id = " contact_photo " class = " contactsection " >
2012-02-06 10:32:57 +04:00
2012-04-22 22:44:11 +04:00
< form class = " float " id = " file_upload_form " action = " ajax/uploadphoto.php " method = " post " enctype = " multipart/form-data " target = " file_upload_target " >
2012-04-03 05:28:12 +04:00
< fieldset id = " photo " >
2012-04-22 22:44:11 +04:00
< div class = " tip propertycontainer " id = " contacts_details_photo_wrapper " title = " <?php echo $l->t ('Click or drop to upload picture'); ?> (max <?php echo $_['uploadMaxHumanFilesize'] ; ?>) " data - element = " PHOTO " >
2012-02-06 10:32:57 +04:00
<!-- img style = " padding: 1em; " id = " contacts_details_photo " alt = " Profile picture " src = " photo.php?id=<?php echo $_['id'] ; ?> " / -->
< progress id = " contacts_details_photo_progress " style = " display:none; " value = " 0 " max = " 100 " > 0 %</ progress >
</ div >
< input type = " hidden " name = " id " value = " <?php echo $_['id'] ?> " >
< input type = " hidden " name = " MAX_FILE_SIZE " value = " <?php echo $_['uploadMaxFilesize'] ?> " id = " max_upload " >
< input type = " hidden " class = " max_human_file_size " value = " (max <?php echo $_['uploadMaxHumanFilesize'] ; ?>) " >
< input id = " file_upload_start " type = " file " accept = " image/* " name = " imagefile " />
< iframe name = " file_upload_target " id = 'file_upload_target' src = " " ></ iframe >
</ fieldset >
</ form >
2012-04-07 18:03:11 +04:00
</ div > <!-- contact_photo -->
2012-04-03 05:28:12 +04:00
< div id = " contact_identity " class = " contactsection " >
< form method = " post " >
2012-02-06 10:32:57 +04:00
< input type = " hidden " name = " id " value = " <?php echo $_['id'] ?> " >
2012-04-03 05:28:12 +04:00
< fieldset id = " ident " class = " contactpart " >
2012-02-06 10:32:57 +04:00
<!-- legend > Name </ legend -->
2012-04-03 05:28:12 +04:00
< span class = " propertycontainer " data - element = " N " >< input type = " hidden " id = " n " class = " contacts_property " name = " value " value = " " /></ span >
< span id = " name " class = " propertycontainer " data - element = " FN " >
< select class = " float " id = " fn_select " title = " <?php echo $l->t ('Format custom, Short name, Full name, Reverse or Reverse with comma'); ?> " style = " width:16em; " >
</ select >< a id = " edit_name " class = " action edit " title = " <?php echo $l->t ('Edit name details'); ?> " ></ a >
</ span >
< dl id = " identityprops " class = " form " >
2012-02-06 10:32:57 +04:00
< dt style = " display:none; " id = " org_label " data - element = " ORG " >< label for = " org " >< ? php echo $l -> t ( 'Organization' ); ?> </label></dt>
2012-04-03 05:28:12 +04:00
< dd style = " display:none; " class = " propertycontainer " id = " org_value " data - element = " ORG " >< input id = " org " required = " required " name = " value[ORG] " type = " text " class = " contacts_property big " name = " value " value = " " placeholder = " <?php echo $l->t ('Organization'); ?> " />< a class = " action delete " onclick = " $ (this).tipsy('hide');Contacts.UI.Card.deleteProperty(this, 'single'); " title = " <?php echo $l->t ('Delete'); ?> " ></ a ></ dd >
2012-02-06 10:32:57 +04:00
< dt style = " display:none; " id = " nickname_label " data - element = " NICKNAME " >< label for = " nickname " >< ? php echo $l -> t ( 'Nickname' ); ?> </label></dt>
2012-04-03 05:28:12 +04:00
< dd style = " display:none; " class = " propertycontainer " id = " nickname_value " data - element = " NICKNAME " >< input id = " nickname " required = " required " name = " value[NICKNAME] " type = " text " class = " contacts_property big " name = " value " value = " " placeholder = " <?php echo $l->t ('Enter nickname'); ?> " />< a class = " action delete " onclick = " $ (this).tipsy('hide');Contacts.UI.Card.deleteProperty(this, 'single'); " title = " <?php echo $l->t ('Delete'); ?> " ></ a ></ dd >
2012-02-06 10:32:57 +04:00
< dt style = " display:none; " id = " bday_label " data - element = " BDAY " >< label for = " bday " >< ? php echo $l -> t ( 'Birthday' ); ?> </label></dt>
2012-04-03 05:28:12 +04:00
< dd style = " display:none; " class = " propertycontainer " id = " bday_value " data - element = " BDAY " >< input id = " bday " required = " required " name = " value " type = " text " class = " contacts_property big " value = " " placeholder = " <?php echo $l->t ('dd-mm-yyyy'); ?> " />< a class = " action delete " onclick = " $ (this).tipsy('hide');Contacts.UI.Card.deleteProperty(this, 'single'); " title = " <?php echo $l->t ('Delete'); ?> " ></ a ></ dd >
< dt style = " display:none; " id = " categories_label " data - element = " CATEGORIES " >< label for = " categories " >< ? php echo $l -> t ( 'Groups' ); ?> </label></dt>
< dd style = " display:none; " class = " propertycontainer " id = " categories_value " data - element = " CATEGORIES " >< input id = " categories " required = " required " name = " value[CATEGORIES] " type = " text " class = " contacts_property bold " name = " value " value = " " placeholder = "
2012-04-13 01:09:42 +04:00
< ? php echo $l -> t ( 'Separate groups with commas' ); ?> " /><a class="action delete" onclick="$(this).tipsy('hide');Contacts.UI.Card.deleteProperty(this, 'single');" title="<?php echo $l->t('Delete'); ?>"></a><a class="action edit" onclick="$(this).tipsy('hide');OCCategories.edit();" title="<?php echo $l->t('Edit groups'); ?>"></a></dd>
2012-02-06 10:32:57 +04:00
</ dl >
</ fieldset >
</ form >
2012-04-07 18:03:11 +04:00
</ div > <!-- contact_identity -->
2012-02-06 10:32:57 +04:00
<!-- div class = " delimiter " ></ div -->
2012-04-03 05:28:12 +04:00
< div id = " contact_communication " class = " contactsection " >
< form method = " post " >
2012-02-06 10:32:57 +04:00
<!-- email addresses -->
2012-04-03 05:28:12 +04:00
< div id = " emails " >
2012-02-06 10:32:57 +04:00
< fieldset class = " contactpart " >
2012-04-03 05:28:12 +04:00
<!-- legend >< ? php echo $l -> t ( 'Email' ); ?> </legend -->
2012-02-06 10:32:57 +04:00
< ul id = " emaillist " class = " propertylist " >
< li class = " template " style = " white-space: nowrap; display: none; " data - element = " EMAIL " >
2012-04-07 18:03:11 +04:00
< input type = " checkbox " class = " contacts_property tip " name = " parameters[TYPE][] " value = " PREF " title = " <?php echo $l->t ('Preferred'); ?> " />
2012-03-27 00:07:19 +04:00
< input type = " email " required = " required " class = " nonempty contacts_property " style = " width:15em; " name = " value " value = " " x - moz - errormessage = " <?php echo $l->t ('Please specify a valid email address.'); ?> " placeholder = " <?php echo $l->t ('Enter email address'); ?> " />< span class = " listactions " >< a onclick = " Contacts.UI.mailTo(this) " class = " action mail " title = " <?php echo $l->t ('Mail to address'); ?> " ></ a >
< a class = " action delete " onclick = " $ (this).tipsy('hide');Contacts.UI.Card.deleteProperty(this, 'list'); " title = " <?php echo $l->t ('Delete email address'); ?> " ></ a ></ span ></ li >
2012-02-06 10:32:57 +04:00
</ ul ><!-- a id = " add_email " class = " add " title = " <?php echo $l->t ('Add email address'); ?> " ></ a -->
</ div > <!-- email addresses -->
<!-- Phone numbers -->
2012-04-03 05:28:12 +04:00
< div id = " phones " >
2012-02-06 10:32:57 +04:00
< fieldset class = " contactpart " >
2012-04-03 05:28:12 +04:00
<!-- legend >< ? php echo $l -> t ( 'Phone' ); ?> </legend -->
2012-02-06 10:32:57 +04:00
< ul id = " phonelist " class = " propertylist " >
< li class = " template " style = " white-space: nowrap; display: none; " data - element = " TEL " >
2012-04-07 18:03:11 +04:00
< input type = " checkbox " class = " contacts_property tip " name = " parameters[TYPE][] " value = " PREF " title = " <?php echo $l->t ('Preferred'); ?> " />
2012-02-06 10:32:57 +04:00
< input type = " text " required = " required " class = " nonempty contacts_property " style = " width:10em; border: 0px; " name = " value " value = " " placeholder = " <?php echo $l->t ('Enter phone number'); ?> " />
< select multiple = " multiple " name = " parameters[TYPE][] " >
< ? php echo html_select_options ( $_ [ 'phone_types' ], array ()) ?>
</ select >
2012-03-27 00:07:19 +04:00
< a class = " action delete " onclick = " $ (this).tipsy('hide');Contacts.UI.Card.deleteProperty(this, 'list'); " title = " <?php echo $l->t ('Delete phone number'); ?> " ></ a ></ li >
2012-02-06 10:32:57 +04:00
</ ul ><!-- a id = " add_phone " class = " add " title = " <?php echo $l->t ('Add phone number'); ?> " ></ a -->
</ div > <!-- Phone numbers -->
<!-- Addresses -->
2012-02-06 17:18:40 +04:00
< div id = " addresses " style = " display:none; " >
2012-02-06 10:32:57 +04:00
< fieldset class = " contactpart " >
2012-04-03 05:28:12 +04:00
<!-- legend >< ? php echo $l -> t ( 'Address' ); ?> </legend -->
2012-02-06 10:32:57 +04:00
< div id = " addressdisplay " >
< dl class = " addresscard template " style = " display: none; " data - element = " ADR " >< dt >
< input class = " adr contacts_property " name = " value " type = " hidden " value = " " />
< input type = " hidden " class = " adr_type contacts_property " name = " parameters[TYPE][] " value = " " />
2012-03-27 00:07:19 +04:00
< span class = " adr_type_label " ></ span >< a class = " action globe " style = " float:right; " onclick = " $ (this).tipsy('hide');Contacts.UI.searchOSM(this); " title = " <?php echo $l->t ('View on map'); ?> " ></ a >< a class = " action edit " style = " float:right; " onclick = " $ (this).tipsy('hide');Contacts.UI.Card.editAddress(this, false); " title = " <?php echo $l->t ('Edit address details'); ?> " ></ a >< a class = " action delete " style = " float:right; " onclick = " $ (this).tipsy('hide');Contacts.UI.Card.deleteProperty(this, 'list'); " title = " Delete address " ></ a >
2012-02-06 10:32:57 +04:00
</ dt >< dd >< ul class = " addresslist " ></ ul ></ dd ></ dl >
</ fieldset >
2012-04-07 18:03:11 +04:00
</ div > <!-- addressdisplay -->
2012-02-06 10:32:57 +04:00
</ div > <!-- Addresses -->
2012-04-03 05:28:12 +04:00
</ form >
2012-04-07 18:03:11 +04:00
</ div > <!-- contact_communication -->
2012-04-03 05:28:12 +04:00
< div id = " contact_note " class = " contactsection " >
< form class = " float " method = " post " >
< fieldset id = " note " class = " formfloat propertycontainer contactpart " data - element = " NOTE " >
2012-04-07 18:03:11 +04:00
< textarea class = " contacts_property note " name = " value " cols = " 40 " rows = " 10 " required = " required " placeholder = " <?php echo $l->t ('Add notes here.'); ?> " ></ textarea >
2012-04-03 05:28:12 +04:00
</ fieldset >
2012-02-06 10:32:57 +04:00
</ form >
2012-04-03 05:28:12 +04:00
</ div > <!-- contact_note -->
</ div > <!-- card -->
2012-02-06 10:32:57 +04:00
< div id = " edit_photo_dialog " title = " Edit photo " >
< div id = " edit_photo_dialog_img " ></ div >
</ div >
< script language = " Javascript " >
$ ( document ) . ready ( function (){
if ( '<?php echo $id; ?>' != '' ) {
$ . getJSON ( OC . filePath ( 'contacts' , 'ajax' , 'contactdetails.php' ),{ 'id' : '<?php echo $id; ?>' }, function ( jsondata ){
if ( jsondata . status == 'success' ){
2012-03-29 17:24:32 +04:00
$ ( '#leftcontent li[data-id="<?php echo $id; ?>"]' ) . addClass ( 'active' );
2012-02-06 10:32:57 +04:00
Contacts . UI . Card . loadContact ( jsondata . data );
}
else {
2012-04-07 18:03:11 +04:00
OC . dialogs . alert ( jsondata . data . message , t ( 'contacts' , 'Error' ));
2012-02-06 10:32:57 +04:00
}
});
}
});
</ script >