📄 view.html.php
字号:
<?php/** * @version $Id: view.html.php 8682 2007-08-31 18:36:45Z jinx $ * @package Joomla * @subpackage Contact * @copyright Copyright (C) 2005 - 2007 Open Source Matters. All rights reserved. * @license GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant to the * GNU General Public License, and as distributed it includes or is derivative * of works licensed under the GNU General Public License or other free or open * source software licenses. See COPYRIGHT.php for copyright notices and * details. */// Check to ensure this file is included in Joomla!defined('_JEXEC') or die();jimport('joomla.application.component.view');/** * @package Joomla * @subpackage Contacts */class ContactViewContact extends JView{ function display($tpl = null) { global $mainframe; $user = &JFactory::getUser(); $pathway = &$mainframe->getPathway(); $document = & JFactory::getDocument(); $model = &$this->getModel(); // Get the parameters of the active menu item $menus = &JMenu::getInstance(); $menu = $menus->getActive(); $pparams = &$mainframe->getPageParameters('com_contact'); $pparams->def('page_title', $menu->name ); // Push a model into the view $model = &$this->getModel(); $modelCat = &$this->getModel( 'Category' ); // Selected Request vars // ID may come from the contact switcher if (!($contactId = JRequest::getInt( 'contact_id', 0 ))) { $contactId = JRequest::getInt( 'id', $contactId ); } // query options $options['id'] = $contactId; $options['aid'] = $user->get('aid', 0); $contact = $model->getContact( $options ); // check if we have a contact if (!is_object( $contact )) { JError::raiseError( 404, 'Contact not found' ); return; } $options['category_id'] = $contact->catid; $options['order by'] = 'cd.default_con DESC, cd.ordering ASC'; $contacts = $modelCat->getContacts( $options ); // Set the document page title $document->setTitle(JText::_('Contact').' - '.$contact->name); //set breadcrumbs if(!isset($menu->query['view']) && $menu->query['view'] != 'contact'){ $pathway->addItem($contact->name, ''); } // Adds parameter handling $contact->params = new JParameter($contact->params); // Handle component/menu overides for some contact parameters if set $contact->params->def('contact_icons', $pparams->get('contact_icons')); $contact->params->def('icon_address', $pparams->get('icon_address')); $contact->params->def('icon_email', $pparams->get('icon_email')); $contact->params->def('icon_telephone', $pparams->get('icon_telephone')); $contact->params->def('icon_fax', $pparams->get('icon_fax')); $contact->params->def('icon_misc', $pparams->get('icon_misc')); $contact->params->def('show_position', $pparams->get('show_position')); $contact->params->def('show_email', $pparams->get('show_email')); $contact->params->def('show_telephone', $pparams->get('show_telephone')); $contact->params->def('show_mobile', $pparams->get('show_mobile')); $contact->params->def('show_fax', $pparams->get('show_fax')); $contact->params->def('allow_vcard', $pparams->get('allow_vcard')); // Handle email cloaking if ($contact->email_to && $pparams->get('show_email')) { $contact->email_to = JHTML::_('email.cloak', $contact->email_to); } if (!empty ($contact->address) || !empty ($contact->suburb) || !empty ($contact->state) || !empty ($contact->country) || !empty ($contact->postcode)) { $contact->params->set('address_check', 1); } else { $contact->params->set('address_check', 0); } // Manage the display mode for contact detail groups switch ($contact->params->get('contact_icons')) { case 1 : // text $contact->params->set('marker_address', JText::_('Address').": "); $contact->params->set('marker_email', JText::_('Email').": "); $contact->params->set('marker_telephone', JText::_('Telephone').": "); $contact->params->set('marker_fax', JText::_('Fax').": "); $contact->params->set('marker_misc', JText::_('Information').": "); $contact->params->set('column_width', '100'); break; case 2 : // none $contact->params->set('marker_address', ''); $contact->params->set('marker_email', ''); $contact->params->set('marker_telephone', ''); $contact->params->set('marker_fax', ''); $contact->params->set('marker_misc', ''); $contact->params->set('column_width', '0'); break; default : // icons $image1 = JHTML::_('image.site', 'con_address.png', '/images/M_images/', $contact->params->get('icon_address'), '/images/M_images/', JText::_('Address').": ", JText::_('Address').": "); $image2 = JHTML::_('image.site', 'emailButton.png', '/images/M_images/', $contact->params->get('icon_email'), '/images/M_images/', JText::_('Email').": ", JText::_('Email').": "); $image3 = JHTML::_('image.site', 'con_tel.png', '/images/M_images/', $contact->params->get('icon_telephone'), '/images/M_images/', JText::_('Telephone').": ", JText::_('Telephone').": "); $image4 = JHTML::_('image.site', 'con_fax.png', '/images/M_images/', $contact->params->get('icon_fax'), '/images/M_images/', JText::_('Fax').": ", JText::_('Fax').": "); $image5 = JHTML::_('image.site', 'con_info.png', '/images/M_images/', $contact->params->get('icon_misc'), '/images/M_images/', JText::_('Information').": ", JText::_('Information').": "); $contact->params->set('marker_address', $image1); $contact->params->set('marker_email', $image2); $contact->params->set('marker_telephone', $image3); $contact->params->set('marker_fax', $image4); $contact->params->set('marker_misc', $image5); $contact->params->set('column_width', '40'); break; } JHTML::_('behavior.formvalidation'); $this->assignRef('contact', $contact); $this->assignRef('contacts', $contacts); $this->assignRef('params', $pparams); parent::display($tpl); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -