Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/profile.zip
Назад
PK Va!]�uH profiles/profile.xmlnu &1i� <?xml version="1.0" encoding="utf-8"?> <form> <fields name="profile"> <fieldset name="profile" label="PLG_USER_PROFILE_SLIDER_LABEL" > <field name="address1" type="text" label="PLG_USER_PROFILE_FIELD_ADDRESS1_LABEL" description="PLG_USER_PROFILE_FIELD_ADDRESS1_DESC" id="address1" filter="string" size="30" /> <field name="address2" type="text" label="PLG_USER_PROFILE_FIELD_ADDRESS2_LABEL" description="PLG_USER_PROFILE_FIELD_ADDRESS2_DESC" id="address2" filter="string" size="30" /> <field name="city" type="text" label="PLG_USER_PROFILE_FIELD_CITY_LABEL" description="PLG_USER_PROFILE_FIELD_CITY_DESC" id="city" filter="string" size="30" /> <field name="region" type="text" label="PLG_USER_PROFILE_FIELD_REGION_LABEL" description="PLG_USER_PROFILE_FIELD_REGION_DESC" id="region" filter="string" size="30" /> <field name="country" type="text" label="PLG_USER_PROFILE_FIELD_COUNTRY_LABEL" description="PLG_USER_PROFILE_FIELD_COUNTRY_DESC" id="country" filter="string" size="30" /> <field name="postal_code" type="text" label="PLG_USER_PROFILE_FIELD_POSTAL_CODE_LABEL" description="PLG_USER_PROFILE_FIELD_POSTAL_CODE_DESC" id="postal_code" filter="string" size="30" /> <field name="phone" type="tel" label="PLG_USER_PROFILE_FIELD_PHONE_LABEL" description="PLG_USER_PROFILE_FIELD_PHONE_DESC" id="phone" filter="string" size="30" /> <field name="website" type="url" label="PLG_USER_PROFILE_FIELD_WEB_SITE_LABEL" description="PLG_USER_PROFILE_FIELD_WEB_SITE_DESC" id="website" filter="url" size="30" validate="url" /> <field name="favoritebook" type="text" label="PLG_USER_PROFILE_FIELD_FAVORITE_BOOK_LABEL" description="PLG_USER_PROFILE_FIELD_FAVORITE_BOOK_DESC" filter="string" size="30" /> <field name="aboutme" type="textarea" label="PLG_USER_PROFILE_FIELD_ABOUT_ME_LABEL" description="PLG_USER_PROFILE_FIELD_ABOUT_ME_DESC" cols="30" rows="5" filter="safehtml" /> <field name="dob" type="dob" label="PLG_USER_PROFILE_FIELD_DOB_LABEL" description="PLG_USER_PROFILE_FIELD_DOB_DESC" info="PLG_USER_PROFILE_SPACER_DOB" translateformat="true" showtime="false" filter="server_utc" /> <field name="tos" type="tos" label="PLG_USER_PROFILE_FIELD_TOS_LABEL" description="PLG_USER_PROFILE_FIELD_TOS_DESC" default="0" filter="integer" > <option value="1">PLG_USER_PROFILE_OPTION_AGREE</option> <option value="0">PLG_USER_PROFILE_OPTION_DO_NOT_AGREE</option> </field> </fieldset> </fields> </form> PK Va!]*� field/tos.phpnu &1i� <?php /** * @package Joomla.Plugin * @subpackage User.profile * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_PLATFORM') or die; JFormHelper::loadFieldClass('radio'); /** * Provides input for TOS * * @since 2.5.5 */ class JFormFieldTos extends JFormFieldRadio { /** * The form field type. * * @var string * @since 2.5.5 */ protected $type = 'Tos'; /** * Method to get the field label markup. * * @return string The field label markup. * * @since 2.5.5 */ protected function getLabel() { $label = ''; if ($this->hidden) { return $label; } // Get the label text from the XML element, defaulting to the element name. $text = $this->element['label'] ? (string) $this->element['label'] : (string) $this->element['name']; $text = $this->translateLabel ? JText::_($text) : $text; // Set required to true as this field is not displayed at all if not required. $this->required = true; // Build the class for the label. $class = !empty($this->description) ? 'hasPopover' : ''; $class = $class . ' required'; $class = !empty($this->labelClass) ? $class . ' ' . $this->labelClass : $class; // Add the opening label tag and main attributes attributes. $label .= '<label id="' . $this->id . '-lbl" for="' . $this->id . '" class="' . $class . '"'; // If a description is specified, use it to build a tooltip. if (!empty($this->description)) { $label .= ' title="' . htmlspecialchars(trim($text, ':'), ENT_COMPAT, 'UTF-8') . '"'; $label .= ' data-content="' . htmlspecialchars( $this->translateDescription ? JText::_($this->description) : $this->description, ENT_COMPAT, 'UTF-8' ) . '"'; if (JFactory::getLanguage()->isRtl()) { $label .= ' data-placement="left"'; } } $tosArticle = $this->element['article'] > 0 ? (int) $this->element['article'] : 0; if ($tosArticle) { JHtml::_('behavior.modal'); JLoader::register('ContentHelperRoute', JPATH_BASE . '/components/com_content/helpers/route.php'); $attribs = array(); $attribs['class'] = 'modal'; $attribs['rel'] = '{handler: \'iframe\', size: {x:800, y:500}}'; $db = JFactory::getDbo(); $query = $db->getQuery(true); $query->select('id, alias, catid, language') ->from('#__content') ->where('id = ' . $tosArticle); $db->setQuery($query); $article = $db->loadObject(); if (JLanguageAssociations::isEnabled()) { $tosAssociated = JLanguageAssociations::getAssociations('com_content', '#__content', 'com_content.item', $tosArticle); } $currentLang = JFactory::getLanguage()->getTag(); if (isset($tosAssociated) && $currentLang !== $article->language && array_key_exists($currentLang, $tosAssociated)) { $url = ContentHelperRoute::getArticleRoute( $tosAssociated[$currentLang]->id, $tosAssociated[$currentLang]->catid, $tosAssociated[$currentLang]->language ); $link = JHtml::_('link', JRoute::_($url . '&tmpl=component'), $text, $attribs); } else { $slug = $article->alias ? ($article->id . ':' . $article->alias) : $article->id; $url = ContentHelperRoute::getArticleRoute($slug, $article->catid, $article->language); $link = JHtml::_('link', JRoute::_($url . '&tmpl=component'), $text, $attribs); } } else { $link = $text; } // Add the label text and closing tag. $label .= '>' . $link . '<span class="star"> *</span></label>'; return $label; } } PK Va!]!�*�� � field/dob.phpnu &1i� <?php /** * @package Joomla.Plugin * @subpackage User.profile * * @copyright (C) 2014 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_PLATFORM') or die; JFormHelper::loadFieldClass('calendar'); /** * Provides input for "Date of Birth" field * * @package Joomla.Plugin * @subpackage User.profile * @since 3.3.7 */ class JFormFieldDob extends JFormFieldCalendar { /** * The form field type. * * @var string * @since 3.3.7 */ protected $type = 'Dob'; /** * Method to get the field label markup. * * @return string The field label markup. * * @since 3.3.7 */ protected function getLabel() { $label = parent::getLabel(); // Get the info text from the XML element, defaulting to empty. $text = $this->element['info'] ? (string) $this->element['info'] : ''; $text = $this->translateLabel ? JText::_($text) : $text; if ($text) { $app = JFactory::getApplication(); $layout = new JLayoutFile('plugins.user.profile.fields.dob'); $view = $app->input->getString('view', ''); // Only display the tip when editing profile if ($view === 'registration' || $view === 'profile' || $app->isClient('administrator')) { $layout = new JLayoutFile('plugins.user.profile.fields.dob'); $info = $layout->render(array('text' => $text)); $label = $info . $label; } } return $label; } } PK Va!]̨h)x'