Файловый менеджер - Редактировать - /var/www/html/configuration.zip
Ðазад
PK ! .G^��K �K view.html.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\View\HtmlView; use Joomla\CMS\Toolbar\Toolbar; use Joomla\CMS\Toolbar\ToolbarHelper; use Joomla\CMS\Uri\Uri; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); jimport( 'joomla.application.component.view' ); jimport( 'joomla.filesystem.folder' ); jimport( 'joomla.filesystem.file' ); /** * Configuration view for JomSocial */ class CommunityViewConfiguration extends HtmlView { /** * The default method that will display the output of this view which is called by * Joomla * * @param string template Template file name **/ public function display( $tpl = null ) { $document = Factory::getDocument(); $params = $this->get( 'Params' ); //user's email privacy setting //CFactory::load( 'libraries' , 'notificationtypes' ); $notificationTypes = new CNotificationTypes(); $lists = array(); for ($i=1; $i<=31; $i++) { $qscale[] = HTMLHelper::_('select.option', $i, $i); } $lists['qscale'] = HTMLHelper::_('select.genericlist', $qscale, 'qscale', 'class="inputbox" size="1"', 'value', 'text', $params->get('qscale', '11')); $videosSize = array ( HTMLHelper::_('select.option', '320x240', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION1')), HTMLHelper::_('select.option', '320x???', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION2')), HTMLHelper::_('select.option', '400x240', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION3')), HTMLHelper::_('select.option', '400x300', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION4')), HTMLHelper::_('select.option', '400x???', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION5')), HTMLHelper::_('select.option', '480x272', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION6')), HTMLHelper::_('select.option', '480x320', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION7')), HTMLHelper::_('select.option', '480x360', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION8')), HTMLHelper::_('select.option', '480x???', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION9')), HTMLHelper::_('select.option', '512x384', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION10')), HTMLHelper::_('select.option', '512x???', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION11')), HTMLHelper::_('select.option', '600x480', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION12')), HTMLHelper::_('select.option', '600x???', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION13')), HTMLHelper::_('select.option', '640x360', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION14')), HTMLHelper::_('select.option', '640x480', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION15')), HTMLHelper::_('select.option', '640x???', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION16')), HTMLHelper::_('select.option', '800x600', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION17')), HTMLHelper::_('select.option', '800x???', Text::_('COM_COMMUNITY_VIDEO_SIZE_OPTION18')), ); $lists['videosSize'] = HTMLHelper::_('select.genericlist', $videosSize, 'videosSize', 'class="inputbox" size="1"', 'value', 'text', $params->get('videosSize')); $imgQuality = array ( HTMLHelper::_('select.option', '60', Text::_('COM_COMMUNITY_PHOTO_QUALITY_OPTION1')), HTMLHelper::_('select.option', '80', Text::_('COM_COMMUNITY_PHOTO_QUALITY_OPTION2')), HTMLHelper::_('select.option', '90', Text::_('COM_COMMUNITY_PHOTO_QUALITY_OPTION3')), HTMLHelper::_('select.option', '100', Text::_('COM_COMMUNITY_PHOTO_QUALITY_OPTION4')), ); $lists['imgQuality'] = HTMLHelper::_('select.genericlist', $imgQuality, 'output_image_quality', 'class="inputbox" size="1"', 'value', 'text', $params->get('output_image_quality')); //album mode $albumMode = array ( HTMLHelper::_('select.option', '0', Text::_('COM_COMMUNITY_SAME_WINDOW') ), // same window HTMLHelper::_('select.option', '1', Text::_('COM_COMMUNITY_MODAL_WINDOW')), // new window ); $lists['albumMode'] = HTMLHelper::_('select.genericlist', $albumMode, 'album_mode', 'class="inputbox" size="1"', 'value', 'text', $params->get('album_mode')); //video mode $videoMode = array ( HTMLHelper::_('select.option', '0', Text::_('COM_COMMUNITY_SAME_WINDOW') ), // same window HTMLHelper::_('select.option', '1', Text::_('COM_COMMUNITY_MODAL_WINDOW')), // new window ); $lists['videoMode'] = HTMLHelper::_('select.genericlist', $videoMode, 'video_mode', 'class="inputbox" size="1"', 'value', 'text', $params->get('video_mode')); //video native $videoNative = array ( HTMLHelper::_('select.option', '0', Text::_('COM_COMMUNITY_STREAM_VIDEO_PLAYER_MEDIAELEMENT') ), HTMLHelper::_('select.option', '1', Text::_('COM_COMMUNITY_STREAM_VIDEO_PLAYER_NATIVE')), ); $lists['videoNative'] = HTMLHelper::_('select.genericlist', $videoNative, 'video_native', 'class="inputbox" size="1"', 'value', 'text', $params->get('video_native')); // Group discussion order option $groupDiscussionOrder = array( HTMLHelper::_('select.option', 'ASC', Text::_('COM_COMMUNITY_SORT_OLDER_FRIST')), HTMLHelper::_('select.option', 'DESC', Text::_('COM_COMMUNITY_SORT_NEWER_FRIST')), ); $lists['groupDicussOrder'] = HTMLHelper::_('select.genericlist', $groupDiscussionOrder, 'group_discuss_order', 'class="inputbox" size="1"', 'value', 'text', $params->get('group_discuss_order')); $videoThumbSize = array( HTMLHelper::_('select.option','320x180','320x180'), HTMLHelper::_('select.option', '640x360', '640x360'), HTMLHelper::_('select.option', '1280x720', '1280x720'), ); $lists['videoThumbSize'] = HTMLHelper::_('select.genericlist', $videoThumbSize, 'videosThumbSize', 'class="inputbox" size="1"', 'value', 'text', $params->get('videosThumbSize')); $dstOffset = array(); $counter = -4; for($i=0; $i <= 8; $i++ ){ $dstOffset[] = HTMLHelper::_('select.option', $counter, $counter); $counter++; } $watermarkPosition = array( HTMLHelper::_('select.option', 'left_top', Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK_POSITION_LFFT_TOP')), HTMLHelper::_('select.option', 'left_bottom', Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK_POSITION_LFFT_BOTTOM')), HTMLHelper::_('select.option', 'right_top', Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK_POSITION_RIGHT_TOP')), HTMLHelper::_('select.option', 'right_bottom', Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK_POSITION_RIGHT_BOTTOM')) ); $lists['watermarkPosition'] = HTMLHelper::_('select.genericlist', $watermarkPosition, 'watermark_position', 'class="inputbox" size="1"', 'value', 'text', $params->get('watermark_position')); $lists['dstOffset'] = HTMLHelper::_('select.genericlist', $dstOffset, 'daylightsavingoffset', 'class="inputbox" size="1"', 'value', 'text', $params->get('daylightsavingoffset')); $networkModel = $this->getModel( 'network' , false ); $JSNInfo = $networkModel->getJSNInfo(); $JSON_output = $networkModel->getJSON(); $lists['enable'] = HTMLHelper::_('select.booleanlist', 'network_enable', 'class="inputbox"', $JSNInfo['network_enable'] ); $uploadLimit = ini_get('upload_max_filesize'); $uploadLimit = CString::str_ireplace('M', ' MB', $uploadLimit); require_once( JPATH_ROOT.'/administrator/components/com_community/libraries/autoupdate.php' ); $isuptodate = CAutoUpdate::checkUpdate(); $this->set( 'JSNInfo', $JSNInfo ); $this->set( 'JSON_output', $JSON_output ); $this->set( 'lists', $lists ); $this->set( 'uploadLimit' , $uploadLimit ); $this->set( 'config' , $params ); $this->set( 'isuptodate' , $isuptodate ); $this->set('notificationTypes',$notificationTypes); jimport('joomla.html.editor'); $config = CFactory::getConfig(); $editor = $editor = new CEditor('jomsocial'); $this->set('editor', $editor); parent::display($tpl); } public function getTemplatesList( $name , $default = '' ) { $path = dirname(JPATH_BASE) . '/components/com_community/templates'; if( $handle = @opendir($path) ) { while( false !== ( $file = readdir( $handle ) ) ) { // Do not get '.' or '..' or '.svn' since we only want folders. if( $file != '.' && $file != '..' && $file != '.svn' && is_file( $path .'/'. $file) ) $templates[] = $file; } } $html = '<select name="' . $name . '">'; foreach( $templates as $template ) { if( $template ) if( !empty( $default ) ) { $selected = ( $default == $template ) ? ' selected="true"' : ''; } $html .= '<option value="' . $template . '"' . $selected . '>' . $template . '</option>'; } $html .= '</select>'; return $html; } public function getKarmaHTML( $name , $value, $readonly=false, $updateTarget='') { $isReadOnly = ($readonly) ? ' readonly="readonly"' : ''; $requiredTargetUpdate = (! empty($updateTarget)) ? 'onblur="azcommunity.updateField(\''.$name.'\', \''.$updateTarget.'\')"' : ''; $html = '<table>'; $html .= '<tr>'; $html .= ' <td>'; if ($readonly) { $html .= '<span class="karma_readonly" id="' . $name . '">' . $value . '</span> '; } else { $html .= '<input type="text" value="' . $value . '" name="' . $name . '" id="'.$name.'" '.$isReadOnly.' '.$requiredTargetUpdate.' /> '; } // $html .= Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_USE_IMAGE'); $html .= ' </td>'; $html .= ' <td>'; $html .= ' <img class="com_karmaImage" src="' . $this->_getKarmaImage( $name ) . '" />'; $html .= ' </td>'; $html .= '</tr>'; $html .= '</table>'; return $html; } public function getNotifyTypeHTML( $selected ) { $types = array(); $types[] = array( 'key' => '1' , 'value' => Text::_('COM_COMMUNITY_EMAIL') ); $types[] = array( 'key' => '2' , 'value' => Text::_('COM_COMMUNITY_PRIVATE_MESSAGE') ); $html = '<select name="notifyby">'; foreach( $types as $type => $option ) { $selectedData = ''; if( $option['key'] == $selected ) { $selectedData = ' selected="true"'; } $html .= '<option value="' . $option['key'] . '"' . $selectedData . '>' . $option['value'] . '</option>'; } $html .= '</select>'; return $html; } public function getPrivacyHTML( $name , $selected , $showSelf = false ) { $public = ( $selected == 0 ) ? 'btn-success' : 'btn-light'; $members = ( $selected == 20 ) ? 'btn-success' : 'btn-light'; $friends = ( $selected == 30 ) ? 'btn-success' : 'btn-light'; $self = ( $selected == 40 ) ? 'btn-success' : 'btn-light'; $html = '<div class="btn-group" data-toggle-name="' . $name . '" data-toggle="buttons-radio">'; $html .= '<button type="button" value="0" class="btn btn-small ' . $public . '" />' . Text::_('COM_COMMUNITY_PUBLIC').'</button>'; $html .= '<button type="button" value="20" class="btn btn-small ' . $members . '" /> ' . Text::_( 'COM_COMMUNITY_MEMBERS').'</button>'; $html .= '<button type="button" value="30" class="btn btn-small ' . $friends . '" /> ' . Text::_('COM_COMMUNITY_FRIENDS').'</button>'; if( $showSelf ) { $html .= '<button type="button" value="40" class="btn btn-small ' . $self . '" />' . Text::_('COM_COMMUNITY_SELF').'</button>'; } $html .= '</div>'; $html .= '<input type="hidden" name="' . $name . '" value="' . $selected . '" />'; return $html; } /** * Method to return the image path for specific elements * @access private * * @return string $image The path to the image. */ public function _getKarmaImage( $name ) { $image = ''; switch( $name ) { case 'point0': $image = Uri::root() . 'components/com_community/templates/default/images/karma-0.5-5.png'; break; case 'point1': $image = Uri::root() . 'components/com_community/templates/default/images/karma-1-5.png'; break; case 'point2': $image = Uri::root() . 'components/com_community/templates/default/images/karma-2-5.png'; break; case 'point3': $image = Uri::root() . 'components/com_community/templates/default/images/karma-3-5.png'; break; case 'point4': $image = Uri::root() . 'components/com_community/templates/default/images/karma-4-5.png'; break; case 'point5': $image = Uri::root() . 'components/com_community/templates/default/images/karma-5-5.png'; break; default: $image = Uri::root() . 'components/com_community/templates/default/images/karma-0-5.png'; break; } return $image; } public function setToolBar() { // Get the toolbar object instance $bar = Toolbar::getInstance('toolbar'); $jinput = Factory::getApplication()->input; // Set the titlebar text ToolbarHelper::title( Text::sprintf( 'COM_COMMUNITY_CONFIGURATION_PAGE_TITLE', Text::_('COM_COMMUNITY_CONFIG_TITLE_'.strtoupper(str_replace('-','_',$jinput->get( 'cfgSection' , 'site' )))) ), 'configuration'); // Add the necessary buttons ToolBarHelper::save( 'saveconfig', Text::_('COM_COMMUNITY_SAVE') ); ToolBarHelper::cancel(); } public function getEditors() { $db = Factory::getDBO(); // compile list of the editors $query = 'SELECT ' . $db->quoteName('element') . ' AS ' . $db->quoteName('value') . ', ' . $db->quoteName('name') . ' AS ' . $db->quoteName('text') . ' FROM ' . $db->quoteName(PLUGIN_TABLE_NAME) . ' WHERE ' . $db->quoteName('folder') . ' = ' . $db->Quote('editors') . ' AND ' . $db->quoteName(EXTENSION_ENABLE_COL_NAME) . ' = ' . $db->Quote(1) . ' ORDER BY ' . $db->quoteName('ordering') . ', ' . $db->quoteName('name'); $db->setQuery( $query ); $editors = $db->loadObjectList(); // Add JomSocial's Editor $editor = new stdClass(); $editor->value = 'jomsocial'; $editor->text = 'plg_editor_jomsocial'; array_push( $editors, $editor ); return $editors; } public function getFieldCodes( $elementName , $selected = '' ) { $db = Factory::getDBO(); $query = 'SELECT DISTINCT ' . $db->quoteName('fieldcode') . ' FROM ' . $db->quoteName('#__community_fields'); $db->setQuery( $query ); $fieldcodes = $db->loadObjectList(); $html = '<select name="'. $elementName . '">'; $html .='<option></option>'; foreach( $fieldcodes as $fieldcode ) { if( !empty($fieldcode->fieldcode ) ) { $selectedData = ''; if( $fieldcode->fieldcode == $selected ) { $selectedData = ' selected="true"'; } $html .= '<option value="' . $fieldcode->fieldcode . '"' . $selectedData . '>' . $fieldcode->fieldcode . '</option>'; } } $html .= '</select>'; return $html; } public function getFolderPermissionsPhoto( $name , $selected ) { $all = ( $selected == '0777' ) ? 'checked="true" ' : ''; $default = ( $selected == '0755' ) ? 'checked="true" ' : ''; $html = '<input type="radio" value="0777" name="' . $name . '" ' . $all . '/> ' . Text::_('COM_COMMUNITY_CHMOD777'); $html .= '<input type="radio" value="0755" name="' . $name . '" ' . $default . '/> ' . Text::_('COM_COMMUNITY_SYSTEM_DEFAULT'); return $html; } public function getFolderPermissionsVideo( $name , $selected ) { $all = ( $selected == '0777' ) ? 'checked="true" ' : ''; $default = ( $selected == '0755' ) ? 'checked="true" ' : ''; $html = '<input type="radio" value="0777" name="' . $name . '" ' . $all . '/> ' . Text::_('COM_COMMUNITY_CHMOD777'); $html .= '<input type="radio" value="0755" name="' . $name . '" ' . $default . '/> ' . Text::_('COM_COMMUNITY_SYSTEM_DEFAULT'); return $html; } public function getLocationFieldCodes($elementName, $selected = '') { $db = Factory::getDBO(); $query = 'SELECT DISTINCT ' . $db->quoteName('fieldcode') . ' FROM ' . $db->quoteName('#__community_fields') . ' ' . 'WHERE ' . $db->quoteName('type') . '=' . $db->Quote('location'); $db->setQuery($query); $fieldcodes = $db->loadObjectList(); $html = '<select name="'. $elementName . '">'; $html .= '<option value=""></option>'; foreach ($fieldcodes as $fieldcode) { if (!empty($fieldcode->fieldcode)) { $selectedData = ''; if ($fieldcode->fieldcode == $selected) { $selectedData = ' selected="true"'; } $html .= '<option value="' . $fieldcode->fieldcode . '"' . $selectedData . '>' . $fieldcode->fieldcode . '</option>'; } } $html .= '</select>'; return $html; } public function getLicenseDetail($license = null) { $return = array(); $domain = $_SERVER['HTTP_HOST']; $domain = str_replace("https://", "", $domain); $domain = str_replace("http://", "", $domain); $check_url = "https://www.jomsocial.com/index.php?option=com_digistore&controller=digistoreAutoinstaller&task=get_license_number_details&tmpl=component&format=raw&component=community&domain=".urlencode($domain)."&license=".trim($license); $license_details = file_get_contents($check_url); if($license_details === FALSE){ $curl = curl_init(); curl_setopt ($curl, CURLOPT_URL, $check_url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $license_details = curl_exec ($curl); curl_close ($curl); } if(isset($license_details) && trim($license_details) != ""){ $license_details = json_decode($license_details, true); if(isset($license_details["0"])){ $license_details = $license_details["0"]; } if(isset($license_details["expires"]) && trim($license_details["expires"]) != "" && trim($license_details["expires"]) == "0000-00-00 00:00:00"){ $valid_license = true; } elseif(isset($license_details["expires"]) && trim($license_details["expires"]) != "" && trim($license_details["expires"]) != "0000-00-00 00:00:00"){ $now = strtotime(date("Y-m-d H:i:s")); $license_expires = strtotime(trim($license_details["expires"])); if($license_expires >= $now){ $valid_license = true; } } if(isset($license_details["domain"]) && isset($license_details["expires"])){ $domain = $license_details["domain"]; $date = $license_details["expires"]; $status = Text::_("COM_COMMUNITY_LICENSE_INACTIVE"); if($valid_license){ $status = Text::_("COM_COMMUNITY_LICENSE_ACTIVE"); } $return = array("domain"=>$domain, "date"=>$date, "status"=>$status); } } return $return; } } PK ! �3� index.htmlnu �[��� <html> <body></body> </html>PK ! ����� � tmpl/status.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_USER_STATUS'); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_USER_STATUS_CHARACTER_LIMIT_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_USER_STATUS_CHARACTER_LIMIT'); ?> </span> </td> <td valign="top"> <div><input type="text" name="statusmaxchar" value="<?php echo $this->config->get('statusmaxchar'); ?>" size="8" /><?php echo Text::_('COM_COMMUNITY_CHARACTERS'); ?></div> </td> </tr> <!-- Stream location --> <!-- <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_STREAM_LOCATION_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_ENABLE_STREAM_LOCATION'); ?> </span> </td> <td valign="top"> <?php $enable_stream_location = $this->config->get('enable_stream_location', COMMUNITY_STREAM_LOCATION_DISABLE); ?> <select name="enable_stream_location"> <option value="<?php echo COMMUNITY_STREAM_LOCATION_DISABLE; ?>" <?php echo ($enable_stream_location == COMMUNITY_STREAM_LOCATION_DISABLE) ? 'selected="selected"' : ''; ?>> <?php echo Text::_('COM_COMMUNITY_DISABLE'); ?> </option> <option value="<?php echo COMMUNITY_STREAM_LOCATION_ENABLE; ?>" <?php echo ($enable_stream_location == COMMUNITY_STREAM_LOCATION_ENABLE) ? 'selected="selected"' : ''; ?>> <?php echo Text::_('COM_COMMUNITY_ENABLE'); ?> </option> </select> </td> </tr> --> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_STREAM_LOCATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ENABLE_STREAM_LOCATION' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('streamlocation' ,'ace-switch ace-switch-5', null , $this->config->get('streamlocation') ); ?> </td> </tr> <!-- Status Emoticons --> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_STATUSEMOTICONS_DESCRIPTION'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_STATUSEMOTICONS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('statusemoticon' ,'ace-switch ace-switch-5', null , $this->config->get('statusemoticon') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! ;��0. 0. tmpl/pages.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> </div> <div class="widget-body"> <div class="widget-main"> <fieldset class="adminform"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablepages' ,'ace-switch ace-switch-5', null , $this->config->get('enablepages') ); ?> </td> </tr> <tr> <td width="350" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_ALLOW_GUEST_SEARCH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_ALLOW_GUEST_SEARCH' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableguestsearchpages' ,'ace-switch ace-switch-5', null , $this->config->get('enableguestsearchpages') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_MODERATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_MODERATION' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('moderatepagecreation' ,'ace-switch ace-switch-5', null , $this->config->get('moderatepagecreation') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_ALLOW_CREATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_ALLOW_CREATION' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('createpages' ,'ace-switch ace-switch-5', null , $this->config->get('createpages') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_CREATION_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_CREATION_LIMIT' ); ?> </span> </td> <td> <input type="text" name="pagecreatelimit" value="<?php echo $this->config->get('pagecreatelimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_PHOTOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_PHOTOS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('pagephotos' ,'ace-switch ace-switch-5', null , $this->config->get('pagephotos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_PHOTO_UPLOAD_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_PHOTO_UPLOAD_LIMIT' ); ?> </span> </td> <td> <input type="text" name="pagephotouploadlimit" value="<?php echo $this->config->get('pagephotouploadlimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_VIDEOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_VIDEOS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('pagevideos' ,'ace-switch ace-switch-5', null , $this->config->get('pagevideos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_VIDEO_UPLOAD_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_VIDEO_UPLOAD_LIMIT' ); ?> </span> </td> <td> <input type="text" name="pagevideouploadlimit" value="<?php echo $this->config->get('pagevideouploadlimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_EVENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_EVENTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('page_events' ,'ace-switch ace-switch-5', null , $this->config->get('page_events') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_POLLS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_POLLS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('page_polls' ,'ace-switch ace-switch-5', null , $this->config->get('page_polls') ); ?> </td> </tr> <!-- <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_ANNOUNCEMENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_ANNOUNCEMENTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('createpageannouncement' ,'ace-switch ace-switch-5', null , $this->config->get('createpageannouncement') ); ?> </td> </tr> --> <!-- <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSIONS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('createpagediscussion' ,'ace-switch ace-switch-5', null , $this->config->get('createpagediscussion') ); ?> </td> </tr> --> <!-- <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSION_NOTIFICATIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSION_NOTIFICATIONS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('pagediscussnotification' ,'ace-switch ace-switch-5', null , $this->config->get('pagediscussnotification') ); ?> </td> </tr> --> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo text::_('COM_COMMUNITY_CONFIGURATION_PAGES_SHOW_FILESHARING_TIPS')?>"> <?php echo text::_('COM_COMMUNITY_CONFIGURATION_PAGES_SHOW_FILESHARING')?> </span> </td> <td> <?php echo CHTMLInput::checkbox('file_sharing_page' ,'ace-switch ace-switch-5', null , $this->config->get('file_sharing_page') ); ?> </td> </tr> <!-- <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSION_FILE_SHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSION_FILE_SHARING' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('pagediscussfilesharing' ,'ace-switch ace-switch-5', null , $this->config->get('pagediscussfilesharing') ); ?> </td> </tr> --> <!-- <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo text::_('COM_COMMUNITY_CONFIGURATION_PAGES_BULLETIN_FILE_SHARING_TIPS')?>"> <?php echo text::_('COM_COMMUNITY_CONFIGURATION_PAGES_BULLETIN_FILE_SHARING')?> </span> </td> <td> <?php echo CHTMLInput::checkbox('pagebulletinfilesharing' ,'ace-switch ace-switch-5', null , $this->config->get('pagebulletinfilesharing') ); ?> </td> </tr> --> <!-- <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSION_FILE_SHARING_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSION_FILE_SHARING_LIMIT' ); ?> </span> </td> <td> <input type="text" name="pagediscussionfilelimit" value="<?php echo $this->config->get('pagediscussionfilelimit' );?>" size="8" /> </td> </tr> --> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSION_FILE_SHARING_MAX_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_DISCUSSION_FILE_SHARING_MAX_SIZE' ); ?> </span> </td> <td> <input type="text" name="pagefilemaxuploadsize" value="<?php echo $this->config->get('pagefilemaxuploadsize' );?>" size="8" /> (MB) <small class="form-text"><?php echo Text::sprintf('COM_COMMUNITY_CONFIGURATION_PHOTOS_MAXIMUM_UPLOAD_SIZE_FROM_PHP', $this->uploadLimit );?></small> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PAGES_FILE_SHARING_EXT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PAGES_FILE_SHARING_EXT' ); ?> </span> </td> <td> <input type="text" name="file_sharing_page_ext" value="<?php echo $this->config->get('file_sharing_page_ext' );?>" size="8" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_PERUPLOAD_FILESHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_PERUPLOAD_FILESHARING' ); ?> </span> </td> <td valign="top"> <input type="text" name="file_sharing_limit_per_upload_page" value="<?php echo $this->config->get('file_sharing_limit_per_upload_page', 10);?>" size="4" /> </td> </tr> </tbody> </table> </fieldset> </div> </div> </div> PK ! 3���� � tmpl/frontpage_options.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_FRONTPAGE' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_ACTIVITIES_COUNT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_ACTIVITIES_COUNT' ); ?> </span> </td> <td valign="top"> <input type="text" name="maxactivities" value="<?php echo $this->config->get('maxactivities');?>" size="4" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_DEFAULT_ACTIVITY_FILTER_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_DEFAULT_ACTIVITY_FILTER' ); ?> </span> </td> <td valign="top"> <select name="frontpageactivitydefault"> <option <?php echo ( $this->config->get('frontpageactivitydefault') == 'all' ) ? 'selected="true"' : ''; ?> value="all"><?php echo Text::_('COM_COMMUNITY_SHOW_ALL_OPTION');?></option> <option <?php echo ( $this->config->get('frontpageactivitydefault') == 'privacy:me-and-friends' ) ? 'selected="true"' : ''; ?> value="privacy:me-and-friends"><?php echo Text::_('COM_COMMUNITY_USER_AND_FRINEDS_OPTION');?></option> <option <?php echo ( $this->config->get('frontpageactivitydefault') == 'apps:my-following' ) ? 'selected="true"' : ''; ?> value="apps:my-following"><?php echo Text::_('COM_COMMUNITY_USER_FOLLOWING');?></option> <option <?php echo ( $this->config->get('frontpageactivitydefault') == 'apps:profile' ) ? 'selected="true"' : ''; ?> value="apps:profile"><?php echo Text::_('COM_COMMUNITY_FILTERBAR_STATUS');?></option> <option <?php echo ( $this->config->get('frontpageactivitydefault') == 'apps:photo' ) ? 'selected="true"' : ''; ?> value="apps:photo"><?php echo Text::_('COM_COMMUNITY_FILTERBAR_PHOTO');?></option> <option <?php echo ( $this->config->get('frontpageactivitydefault') == 'apps:video' ) ? 'selected="true"' : ''; ?> value="apps:video"><?php echo Text::_('COM_COMMUNITY_FILTERBAR_VIDEO');?></option> <option <?php echo ( $this->config->get('frontpageactivitydefault') == 'apps:group' ) ? 'selected="true"' : ''; ?> value="apps:group"><?php echo Text::_('COM_COMMUNITY_FILTERBAR_GROUP');?></option> <option <?php echo ( $this->config->get('frontpageactivitydefault') == 'apps:event' ) ? 'selected="true"' : ''; ?> value="apps:event"><?php echo Text::_('COM_COMMUNITY_FILTERBAR_EVENT');?></option> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_SHOW_ACTIVITY_STREAM_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_SHOW_ACTIVITY_STREAM' ); ?> </span> </td> <td valign="top"> <select name="showactivitystream"> <option <?php echo ( $this->config->get('showactivitystream') == '0' ) ? 'selected="true"' : ''; ?> value="0"><?php echo Text::_('COM_COMMUNITY_HIDE_OPTION');?></option> <option <?php echo ( $this->config->get('showactivitystream') == '1' ) ? 'selected="true"' : ''; ?> value="1"><?php echo Text::_('COM_COMMUNITY_SHOW_OPTION');?></option> <option <?php echo ( $this->config->get('showactivitystream') == '2' ) ? 'selected="true"' : ''; ?> value="2"><?php echo Text::_('COM_COMMUNITY_MEMBERSONLY_OPTION');?></option> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_SHOW_CUSTOM_ACTIVITY_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_SHOW_CUSTOM_ACTIVITY' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('custom_activity' ,'ace-switch ace-switch-5', null , $this->config->get('custom_activity') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo TexT::_('COM_COMMUNITY_CONFIGURATION_INFINITE_SCROLL_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_INFINITE_SCROLL')?> </span> </td> <td> <?php echo CHTMLInput::checkbox('infinitescroll', 'ace-switch ace-switch-5', null, $this->config->get('infinitescroll'))?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_START_AUTOLOAD_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_START_AUTOLOAD' ); ?> </span> </td> <td valign="top"> <input type="text" name="autoloadtrigger" value="<?php echo $this->config->get('autoloadtrigger', 0);?>" size="4" /> </td> </tr> </tbody> </table> </div> </div> </div> PK ! Bk�) ) tmpl/registration_invite.phpnu �[��� <?php /** * @copyright (C) 2016 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_INVITE_ONLY' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <?php $comUsersParams = ComponentHelper::getParams('com_users'); if($comUsersParams->get('allowUserRegistration')) { echo '<div class="alert alert-notice">'; echo Text::sprintf('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_DISABLED_JOOMLA_ERROR', CRoute::_('index.php?option=com_config&view=component&component=com_users')); echo '</div>'; } ?> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_INVITE_ONLY_OPTIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_INVITE_ONLY_OPTIONS' ); ?> </span> </td> <td> <?php //check if com_users registration is enabled if(!$comUsersParams->get('allowUserRegistration')) { echo CHTMLInput::checkbox('invite_only', 'ace-switch ace-switch-5', null, $this->config->get('invite_only')); }else{ echo CHTMLInput::checkbox('invite_only', 'ace-switch ace-switch-5', 'disabled', $this->config->get('invite_only')); } ?> </td> </tr> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_REQUEST_INVITE_OPTIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_REQUEST_INVITE_OPTIONS' ); ?> </span> </td> <td> <?php //check if com_users registration is enabled if(!$comUsersParams->get('allowUserRegistration')) { echo CHTMLInput::checkbox('invite_only_request', 'ace-switch ace-switch-5', null, $this->config->get('invite_only_request')); }else{ echo CHTMLInput::checkbox('invite_only_request', 'ace-switch ace-switch-5', 'disabled', $this->config->get('invite_only_request')); } ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_LIMIT_OPTIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_LIMIT_OPTIONS' ); ?> </span> </td> <td> <select name="invite_registation_limit"> <option value="0"<?php echo $this->config->get('invite_registation_limit') == 0 ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_UNLIMITED');?></option> <option value="5"<?php echo $this->config->get('invite_registation_limit') == 5 ? ' selected="selected"' : ''; ?>><?php echo 5;?></option> <option value="10"<?php echo $this->config->get('invite_registation_limit') == 10 ? ' selected="selected"' : ''; ?>><?php echo 10;?></option> <option value="50"<?php echo $this->config->get('invite_registation_limit') == 50 ? ' selected="selected"' : ''; ?>><?php echo 50;?></option> <option value="100"<?php echo $this->config->get('invite_registation_limit') == 100 ? ' selected="selected"' : ''; ?>><?php echo 100;?></option> </select> </td> </tr> </tbody> </table> </div> </div> </div> PK ! �u�p p tmpl/linkedin_api.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; use Joomla\CMS\Uri\Uri; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LINKEDIN_API'); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/ben7cz" target="_blank"><i class="js-icon-wrench"></i> <?php echo Text::_('COM_COMMUNITY_DOC_SETTING_UP'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LINKEDIN_CLIENT_ID_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LINKEDIN_CLIENT_ID' ); ?> </span> </td> <td> <input type="text" name="linkedinclientid" value="<?php echo $this->config->get('linkedinclientid' , '' );?>" size="50" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LINKEDIN_CLIENT_SECRET_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LINKEDIN_CLIENT_SECRET'); ?> </span> </td> <td> <input type="text" name="linkedinsecret" value="<?php echo $this->config->get('linkedinsecret' , '' );?>" size="50" /> </td> </tr> <tr> <td class="key"> <span> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LINKEDIN_REDIRECT_URL'); ?> </span> </td> <td> <pre><?php echo Uri::root().'index.php?option=com_community&view=frontpage&login=1&client_id=' . $this->config->get('linkedinclientid' , '' );?></pre> </td> </tr> </tbody> </table> <table> <tbody> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LINKEDIN_WATERMARK_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LINKEDIN_WATERMARK' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('linkedinwatermark' ,'ace-switch ace-switch-5', null , $this->config->get('linkedinwatermark') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LINKEDIN_REIMPORT_AVATAR_LOGIN_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LINKEDIN_REIMPORT_AVATAR_LOGIN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('linkedinloginimportavatar' ,'ace-switch ace-switch-5', null , $this->config->get('linkedinloginimportavatar') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! 8vYG�. �. tmpl/groups.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5> </h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/jsgroup" target="_blank"> <i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <fieldset class="adminform"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablegroups' ,'ace-switch ace-switch-5', null , $this->config->get('enablegroups') ); ?> </td> </tr> <tr> <td width="350" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_ALLOW_GUEST_SEARCH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_ALLOW_GUEST_SEARCH' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableguestsearchgroups' ,'ace-switch ace-switch-5', null , $this->config->get('enableguestsearchgroups') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_MODERATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_MODERATION' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('moderategroupcreation' ,'ace-switch ace-switch-5', null , $this->config->get('moderategroupcreation') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_ALLOW_CREATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_ALLOW_CREATION' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('creategroups' ,'ace-switch ace-switch-5', null , $this->config->get('creategroups') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_CREATION_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_CREATION_LIMIT' ); ?> </span> </td> <td> <input type="text" name="groupcreatelimit" value="<?php echo $this->config->get('groupcreatelimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_PHOTOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_PHOTOS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('groupphotos' ,'ace-switch ace-switch-5', null , $this->config->get('groupphotos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_PHOTO_UPLOAD_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_PHOTO_UPLOAD_LIMIT' ); ?> </span> </td> <td> <input type="text" name="groupphotouploadlimit" value="<?php echo $this->config->get('groupphotouploadlimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_VIDEOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_VIDEOS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('groupvideos' ,'ace-switch ace-switch-5', null , $this->config->get('groupvideos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_VIDEO_UPLOAD_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_VIDEO_UPLOAD_LIMIT' ); ?> </span> </td> <td> <input type="text" name="groupvideouploadlimit" value="<?php echo $this->config->get('groupvideouploadlimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_EVENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_EVENTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('group_events' ,'ace-switch ace-switch-5', null , $this->config->get('group_events') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_POLLS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_POLLS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('group_polls' ,'ace-switch ace-switch-5', null , $this->config->get('group_polls') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_ANNOUNCEMENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_ANNOUNCEMENTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('createannouncement' ,'ace-switch ace-switch-5', null , $this->config->get('createannouncement') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_DISCUSSIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_DISCUSSIONS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('creatediscussion' ,'ace-switch ace-switch-5', null , $this->config->get('creatediscussion') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUPS_DISCUSSION_NOTIFICATIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_DISCUSSION_NOTIFICATIONS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('groupdiscussnotification' ,'ace-switch ace-switch-5', null , $this->config->get('groupdiscussnotification') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo text::_('COM_COMMUNITY_CONFIGURATION_GROUP_SHOW_FILESHARING_TIPS')?>"> <?php echo text::_('COM_COMMUNITY_CONFIGURATION_GROUP_SHOW_FILESHARING')?> </span> </td> <td> <?php echo CHTMLInput::checkbox('file_sharing_group' ,'ace-switch ace-switch-5', null , $this->config->get('file_sharing_group') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISCUSSION_FILE_SHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISCUSSION_FILE_SHARING' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('groupdiscussfilesharing' ,'ace-switch ace-switch-5', null , $this->config->get('groupdiscussfilesharing') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo text::_('COM_COMMUNITY_CONFIGURATION_BULLETIN_FILE_SHARING_TIPS')?>"> <?php echo text::_('COM_COMMUNITY_CONFIGURATION_BULLETIN_FILE_SHARING')?> </span> </td> <td> <?php echo CHTMLInput::checkbox('groupbulletinfilesharing' ,'ace-switch ace-switch-5', null , $this->config->get('groupbulletinfilesharing') ); ?> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISCUSSION_FILE_SHARING_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISCUSSION_FILE_SHARING_LIMIT' ); ?> </span> </td> <td> <input type="text" name="discussionfilelimit" value="<?php echo $this->config->get('discussionfilelimit' );?>" size="8" /> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISCUSSION_FILE_SHARING_MAX_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISCUSSION_FILE_SHARING_MAX_SIZE' ); ?> </span> </td> <td> <input type="text" name="filemaxuploadsize" value="<?php echo $this->config->get('filemaxuploadsize' );?>" size="8" /> (MB) <small class="form-text"><?php echo Text::sprintf('COM_COMMUNITY_CONFIGURATION_PHOTOS_MAXIMUM_UPLOAD_SIZE_FROM_PHP', $this->uploadLimit );?></smal> </td> </tr> <tr> <td class="key"> <span class="editlinktip js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GROUP_FILE_SHARING_EXT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUP_FILE_SHARING_EXT' ); ?> </span> </td> <td> <input type="text" name="file_sharing_group_ext" value="<?php echo $this->config->get('file_sharing_group_ext' );?>" size="8" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_PERUPLOAD_FILESHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_PERUPLOAD_FILESHARING' ); ?> </span> </td> <td valign="top"> <input type="text" name="file_sharing_limit_per_upload_group" value="<?php echo $this->config->get('file_sharing_limit_per_upload_group', 10);?>" size="4" /> </td> </tr> </tbody> </table> </fieldset> </div> </div> </div> PK ! ;fܰ � tmpl/license.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); $license_details = $this->getLicenseDetail($this->config->get('registerlicense')); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTER_LICENSE_TITLE' ); ?></h5> <div class="widget-toolbar no-border"> <!-- <a href="http://tiny.cc/dailylimits" target="_blank"> <i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?> </a> --> </div> </div> <div class="widget-body"> <div class="widget-main"> <p><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTER_LICENSE_TEXT'); ?></p> <table> <tbody> <tr> <td width="140" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTER_LICENSE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTER_LICENSE' ); ?> </span> </td> <td> <input type="text" name="registerlicense" value="<?php echo $this->config->get('registerlicense');?>" class="input-big" /> </td> </tr> <tr> <td class="key"> <span> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTER_LICENSE_DOMAIN' ); ?> </span> </td> <td> : <?php if (isset($license_details["domain"])) echo $license_details["domain"]; ?> </td> </tr> <tr> <td class="key"> <span> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTER_LICENSE_EXPIRE' ); ?> </span> </td> <td> : <?php if (isset($license_details["date"])) echo $license_details["date"]; ?> </td> </tr> <tr> <td class="key"> <span> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REGISTER_LICENSE_STATUS' ); ?> </span> </td> <td> : <?php if (isset($license_details["status"])) echo $license_details["status"]; ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! ��Y�u u tmpl/featured_stream.phpnu �[��� <?php /** * @copyright (C) 2015 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FEATURED_STREAM' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SHOW_FEATURED_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ENABLED_FEATURED_STREAM' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('featured_stream' ,'ace-switch ace-switch-5', null , $this->config->get('featured_stream') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_STREAM_FRONTPAGE_FEATURED_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_STREAM_FRONTPAGE_FEATURED' ); ?> </span> </td> <td> <input type="text" name="stream_frontpage_featured" value="<?php echo $this->config->get('stream_frontpage_featured' );?>" size="4" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_STREAM_PROFILE_FEATURED_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_STREAM_PROFILE_FEATURED' ); ?> </span> </td> <td> <input type="text" name="stream_profile_featured" value="<?php echo $this->config->get('stream_profile_featured');?>" size="4" /> <?php // echo Text::_('COM_COMMUNITY_VIDEOS');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_STREAM_GROUP_FEATURED_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_STREAM_GROUP_FEATURED' ); ?> </span> </td> <td> <input type="text" name="stream_group_featured" value="<?php echo $this->config->get('stream_group_featured' );?>" size="4" /> <?php // echo Text::_('COM_COMMUNITY_GROUPS');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_STREAM_EVENT_FEATURED_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_STREAM_EVENT_FEATURED' ); ?> </span> </td> <td> <input type="text" name="stream_event_featured" value="<?php echo $this->config->get('stream_event_featured' );?>" size="4" /> <?php //echo Text::_('COM_COMMUNITY_ALBUMS');?> </td> </tr> </tbody> </table> </div> </div> </div> PK ! ���! ! tmpl/facebook_imports.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_SETTINGS' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="350" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_IMPORT_SIGNUP_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_IMPORT_SIGNUP' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('fbsignupimport' ,'ace-switch ace-switch-5', null , $this->config->get('fbsignupimport') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_WATERMARK_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_WATERMARK' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('fbwatermark' ,'ace-switch ace-switch-5', null , $this->config->get('fbwatermark') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_REIMPORT_PROFILE_LOGIN_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_REIMPORT_PROFILE_LOGIN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('fbloginimportprofile' ,'ace-switch ace-switch-5', null , $this->config->get('fbloginimportprofile') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_REIMPORT_AVATAR_LOGIN_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_REIMPORT_AVATAR_LOGIN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('fbloginimportavatar' ,'ace-switch ace-switch-5', null , $this->config->get('fbloginimportavatar') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! ��ψ� � tmpl/featured_listing.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FEATURED_LISTING' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SHOW_FEATURED_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ENABLED_FEATURED' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('show_featured' ,'ace-switch ace-switch-5', null , $this->config->get('show_featured') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_USERS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_USERS' ); ?> </span> </td> <td> <input type="text" name="featureduserslimit" value="<?php echo $this->config->get('featureduserslimit' );?>" size="4" /> <?php // echo Text::_('COM_COMMUNITY_USERS');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_VIDEOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_VIDEOS' ); ?> </span> </td> <td> <input type="text" name="featuredvideoslimit" value="<?php echo $this->config->get('featuredvideoslimit');?>" size="4" /> <?php // echo Text::_('COM_COMMUNITY_VIDEOS');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_PAGES'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_PAGES' ); ?> </span> </td> <td> <input type="text" name="featuredpageslimit" value="<?php echo $this->config->get('featuredpageslimit' );?>" size="4" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_GROUPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_GROUPS' ); ?> </span> </td> <td> <input type="text" name="featuredgroupslimit" value="<?php echo $this->config->get('featuredgroupslimit' );?>" size="4" /> <?php // echo Text::_('COM_COMMUNITY_GROUPS');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_ALBUMS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_ALBUMS' ); ?> </span> </td> <td> <input type="text" name="featuredalbumslimit" value="<?php echo $this->config->get('featuredalbumslimit' );?>" size="4" /> <?php //echo Text::_('COM_COMMUNITY_ALBUMS');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_EVENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FEATURED_MAXIMUM_EVENTS' ); ?> </span> </td> <td> <input type="text" name="featuredeventslimit" value="<?php echo $this->config->get('featuredeventslimit' );?>" size="4" /> <?php // echo Text::_('COM_COMMUNITY_EVENTS');?> </td> </tr> </tbody> </table> </div> </div> </div> PK ! �.�Ar4 r4 tmpl/photos.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; use Joomla\CMS\Uri\Uri; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <style type="text/css"> #js-cpanel .ace-file-input { margin-bottom: 0; } .ace-file-input .icon-picture, .ace-file-input .icon-upload-alt { height: 24px; } #js-cpanel .ace-file-input label.selected .icon-picture { line-height: 25px !important; } </style> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5> </h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/jsphotosetup" target="_blank"><i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> </div> </div> <fieldset class="adminform"> <div class="widget-body"> <div class="widget-main"> <h3 class="reset-gap"><?php echo Text::_( 'COM_COMMUNITY_PHOTO_POSTBOX_CONFIG_TITLE' ); ?></h3> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_PHOTO_POSTBOX_CONFIG_PER_UPLOAD_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_PHOTO_POSTBOX_CONFIG_PER_UPLOAD_LIMIT' ); ?> </span> </td> <td valign="top"> <input type="text" name="num_photo_per_upload_stream" value="<?php echo $this->config->get('num_photo_per_upload_stream' );?>" size="10" /> </td> </tr> </tbody> </table> <h3 class="reset-gap"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS' ); ?></h3> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_ENABLE' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('enablephotos' ,'ace-switch ace-switch-5', null , $this->config->get('enablephotos') ); ?> </td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_GIF_ANIMATION_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_GIF_ANIMATION_ENABLE' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('enable_animated_gif' ,'ace-switch ace-switch-5', null , $this->config->get('enable_animated_gif') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_CREATION_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_CREATION_LIMIT' ); ?> </span> </td> <td valign="top"> <input type="text" name="photouploadlimit" value="<?php echo $this->config->get('photouploadlimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_MAP_DEFAULT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_MAP_DEFAULT' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('photosmapdefault' ,'ace-switch ace-switch-5', null , $this->config->get('photosmapdefault') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_MAXIMUM_UPLOAD_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_MAXIMUM_UPLOAD_SIZE' ); ?> </span> </td> <td valign="top"> <div><input type="text" size="3" name="maxuploadsize" value="<?php echo $this->config->get('maxuploadsize');?>" /> (MB)</div> <small class="form-text"><?php echo Text::sprintf('COM_COMMUNITY_CONFIGURATION_PHOTOS_MAXIMUM_UPLOAD_SIZE_FROM_PHP', $this->uploadLimit );?></small> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_DELETE_ORIGINAL_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_DELETE_ORIGINAL' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('deleteoriginalphotos' ,'ace-switch ace-switch-5', null , $this->config->get('deleteoriginalphotos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_IMAGEMAGICK_PATH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_IMAGEMAGICK_PATH' ); ?> </span> </td> <td valign="top"> <input name="magickPath" type="text" size="60" value="<?php echo $this->config->get('magickPath');?>" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_AUTO_SET_COVER_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_AUTO_SET_COVER' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('autoalbumcover' ,'ace-switch ace-switch-5', null , $this->config->get('autoalbumcover') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_AUTO_ROTATE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_AUTO_ROTATE' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('photos_auto_rotate' ,'ace-switch ace-switch-5', null , $this->config->get('photos_auto_rotate') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_OUTPUT_QUALITY_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_OUTPUT_QUALITY' ); ?> </span> </td> <td valign="top"> <?php echo $this->lists['imgQuality']; ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_WINDOW_MODE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_WINDOW_MODE' ); ?> </span> </td> <td valign="top"> <?php echo $this->lists['albumMode']; ?> </td> </tr> </tbody> </table> <h3 class="reset-gap"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LOCATION' ); ?></h3> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LOCATION_PHOTOS_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LOCATION_PHOTOS_ENABLE' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('enable_photos_location' ,'ace-switch ace-switch-5', null , $this->config->get('enable_photos_location') ); ?> </td> </tr> </tbody> </table> <!-- Photo's watermark settings--> <h3 class="reset-gap"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK' ); ?></h3> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK_SETTINGS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK_SETTINGS' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('photo_watermark' ,'ace-switch ace-switch-5', null , $this->config->get('photo_watermark') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_MINIMUM_PHOTO_X_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_MINIMUM_PHOTO_X_SIZE' ); ?> </span> </td> <td valign="top"> <input type="text" name="min_width_img_watermark" value="<?php echo $this->config->get('min_width_img_watermark' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_MINIMUM_PHOTO_Y_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_MINIMUM_PHOTO_Y_SIZE' ); ?> </span> </td> <td valign="top"> <input type="text" name="min_height_img_watermark" value="<?php echo $this->config->get('min_height_img_watermark' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_MULTIPROFILE_WATERMARK_TIPS'); ?>"><?php echo Text::_( 'COM_COMMUNITY_MULTIPROFILE_WATERMARK' ); ?></span> </td> <td> <div> <div class="ace-file-input"> <input type="file" name="watermark" id="watermark"> </div> </div> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK_POSITION_SETTINGS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PHOTOS_WATERMARK_POSITION_SETTINGS' ); ?> </span> </td> <td valign="top"> <?php echo $this->lists['watermarkPosition']; ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title=""><?php echo Text::_( 'COM_COMMUNITY_MULTIPROFILE_WATERMARK_PREVIEW' ); ?></span> </td> <td> <div class="space-12"></div> <?php if( file_exists(JPATH_ROOT .'/'. COMMUNITY_WATERMARKS_PATH .'/'.WATERMARK_DEFAULT_NAME.'.png') ){ ?> <img src="<?php echo Uri::root() .'/'.COMMUNITY_WATERMARKS_PATH .'/'.WATERMARK_DEFAULT_NAME.'.png';?>" style="border: 1px solid #eee;" /> <?php } else { ?> <?php echo Text::_('-');?> <?php } ?> </td> </tr> </tbody> </table> </div> </div> </fieldset> </div> <script> jQuery('#watermark').ace_file_input({ no_file:'No File ...', btn_choose:'Choose', btn_change:'Change' }).on('change', function(){ // var files = $(this).data('ace_input_files'); //or var files = $(this).ace_file_input('files'); // var method = $(this).data('ace_input_method'); //method will be either 'drop' or 'select' //or var method = $(this).ace_file_input('method'); }); </script> PK ! ��g tmpl/network_form.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <fieldset class="adminform"> <legend><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK');?></legend> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_ENABLE' ); ?> </span> </td> <td><?php echo $this->lists['enable']; ?></td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_DESCRIPTION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_DESCRIPTION' ); ?> </span> </td> <td><input type="text" class="inputbox" name="network_description" id="description" size="80" value="<?php echo $this->JSNInfo['network_description']; ?>"></td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_TAGS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_TAGS' ); ?> </span> </td> <td><input type="text" class="inputbox" name="network_keywords" id="keywords" size="80" value="<?php echo $this->JSNInfo['network_keywords']; ?>"></td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_JOIN_URL_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_JOIN_URL' ); ?> </span> </td> <td> <input type="text" class="inputbox" name="network_join_url" id="join_url" size="80" value="<?php echo $this->JSNInfo['network_join_url'] ?>"> </td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_UPDATE_INTERVAL_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_UPDATE_INTERVAL' ); ?> </span> </td> <td><input type="text" class="inputbox" name="network_cron_freq" id="cron_freq" value="<?php echo $this->JSNInfo['network_cron_freq']; ?>"> (<?php echo Text::_('COM_COMMUNITY_HOURS');?>)</td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_UPLOAD_LOGO_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_UPLOAD_LOGO' ); ?> </span> </td> <td> <input class="inputbox" type="file" id="file-upload" name="network_Filedata" style="color: #666;" /> <input type="checkbox" class="inputbox" name="network_replace_image" id="replace_image" value="1"> <label for="replace_image"><?php echo Text::_('COM_COMMUNITY_REPLACE_IMAGE');?></label> </td> </tr> <?php if( $this->JSNInfo['network_logo_url'] ) { ?> <tr> <td valign="top" width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_CURRENT_LOGO_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_CURRENT_LOGO' ); ?> </span> </td> <td> <?php echo HTMLHelper::_('image', $this->JSNInfo['network_logo_url'], '', ''); ?> <input type="hidden" name="network_logo_url" value="<?php echo $this->JSNInfo['network_logo_url'] ?>" /> </td> </tr> <?php } ?> </tbody> </table> <input type="hidden" name="network_cron_last_run" value="<?php echo $this->JSNInfo['network_cron_last_run'] ?>" /> </fieldset>PK ! �?�,X X tmpl/time_offset.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DAYLIGHT_SAVING' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DAYLIGHT_SAVING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DAYLIGHT_SAVING' ); ?> </span> </td> <td valign="top"> <?php echo $this->lists['dstOffset']; ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! 5��/ �/ tmpl/events.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5> </h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/jsevents" target="_blank"> <i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <fieldset class="adminform"> <table width="100%"> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_ENABLE_EVENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_ENABLE_EVENTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableevents' ,'ace-switch ace-switch-5', null , $this->config->get('enableevents') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_ENABLE_GUEST_SEARCH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_ENABLE_GUEST_SEARCH' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableguestsearchevents' ,'ace-switch ace-switch-5', null , $this->config->get('enableguestsearchevents') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_MODERATE_EVENT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_MODERATE_EVENT' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('event_moderation' ,'ace-switch ace-switch-5', null , $this->config->get('event_moderation') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_ALLOW_CREATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_ALLOW_CREATION' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('createevents' ,'ace-switch ace-switch-5', null , $this->config->get('createevents') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_CREATE_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_CREATE_LIMIT' ); ?> </span> </td> <td> <input type="text" name="eventcreatelimit" value="<?php echo $this->config->get('eventcreatelimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SHOW_FEATURED_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REPEAT' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablerepeat' ,'ace-switch ace-switch-5', null , $this->config->get('enablerepeat') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_PHOTO_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_PHOTO' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('eventphotos' ,'ace-switch ace-switch-5', null , $this->config->get('eventphotos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_CREATE_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_PHOTOS_CREATE_LIMIT' ); ?> </span> </td> <td> <input type="text" name="eventphotouploadlimit" value="<?php echo $this->config->get('eventphotouploadlimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_VIDEO_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_VIDEO' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('eventvideos' ,'ace-switch ace-switch-5', null , $this->config->get('eventvideos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_CREATE_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_VIDEOS_CREATE_LIMIT' ); ?> </span> </td> <td> <input type="text" name="eventvideouploadlimit" value="<?php echo $this->config->get('eventvideouploadlimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_POLLS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_POLLS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('event_polls' ,'ace-switch ace-switch-5', null , $this->config->get('event_polls') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_ICAL_EXPORT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_ICAL_EXPORT' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('eventexportical' ,'ace-switch ace-switch-5', null , $this->config->get('eventexportical') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_ICAL_IMPORT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_ICAL_IMPORT' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('event_import_ical' ,'ace-switch ace-switch-5', null , $this->config->get('event_import_ical') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_SHOW_MAPS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_SHOW_MAPS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('eventshowmap' ,'ace-switch ace-switch-5', null , $this->config->get('eventshowmap') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_TIME_SELECTION_FORMAT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_TIME_SELECTION_FORMAT' ); ?> </span> </td> <td> <select name="eventshowampm"> <option value="1"<?php echo ( $this->config->get('eventshowampm') == '1' ) ? ' selected="true"' : '';?>><?php echo Text::_('COM_COMMUNITY_12H_OPTION');?></option> <option value="0"<?php echo ( $this->config->get('eventshowampm') == '0' ) ? ' selected="true"' : '';?>><?php echo Text::_('COM_COMMUNITY_24H_OPTION');?></option> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENTS_SHOW_TIMEZONE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_SHOW_TIMEZONE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('eventshowtimezone' ,'ace-switch ace-switch-5', null , $this->config->get('eventshowtimezone') ); ?> </td> </tr> <tr> <td class="key" width="200"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENT_SHOW_FILESHARING_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENT_SHOW_FILESHARING'); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('file_sharing_event' ,'ace-switch ace-switch-5', null , $this->config->get('file_sharing_event') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENT_MAX_FILESHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENT_MAX_FILESHARING' ); ?> </span> </td> <td valign="top"> <input type="text" name="file_sharing_event_max" value="<?php echo $this->config->get('file_sharing_event_max', 0);?>" size="4" /> (MB) <small class="form-text"><?php echo Text::sprintf('COM_COMMUNITY_CONFIGURATION_PHOTOS_MAXIMUM_UPLOAD_SIZE_FROM_PHP', $this->uploadLimit );?></small> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EVENT_EXTENSION_FILESHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENT_EXTENSION_FILESHARING' ); ?> </span> </td> <td valign="top"> <input type="text" name="file_sharing_event_ext" value="<?php echo $this->config->get('file_sharing_event_ext', 0);?>" size="4" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_PERUPLOAD_FILESHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_PERUPLOAD_FILESHARING' ); ?> </span> </td> <td valign="top"> <input type="text" name="file_sharing_limit_per_upload_event" value="<?php echo $this->config->get('file_sharing_limit_per_upload_event', 10);?>" size="4" /> </td> </tr> </tbody> </table> </fieldset> </div> </div> </div> PK ! �\E~^ ^ tmpl/cronprocess.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_CRONJOB' ); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/jscron" target="_blank"><i class="js-icon-facetime-video"></i> <?php echo Text::_('COM_COMMUNITY_DOC_AND_VIDEO'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <div class="space-12"></div> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_CRONJOB_SENDMAIL_PAGELOAD_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_CRONJOB_SENDMAIL_PAGELOAD'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('sendemailonpageload','ace-switch ace-switch-5', null , $this->config->get('sendemailonpageload') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_CRONJOB_ARCHIVE_MAX_DAY_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_CRONJOB_ARCHIVE_MAX_DAY'); ?> </span> </td> <td> <input type="text" name="archive_activity_max_day" value="<?php echo $this->config->get('archive_activity_max_day' );?>" size="4" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_CRONJOB_ARCHIVE_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_CRONJOB_ARCHIVE_LIMIT'); ?> </span> </td> <td> <input type="text" name="archive_activity_limit" value="<?php echo $this->config->get('archive_activity_limit' );?>" size="4" /> </td> </tr> </tbody> </table> </div> </div> </div>PK ! �h|� � tmpl/twitter_api.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; use Joomla\CMS\Uri\Uri; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_API'); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/cbn7cz" target="_blank"><i class="js-icon-wrench"></i> <?php echo Text::_('COM_COMMUNITY_DOC_SETTING_UP'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_API_KEY_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_TWITTER_API_KEY' ); ?> </span> </td> <td> <input type="text" name="twitterconnectkey" value="<?php echo $this->config->get('twitterconnectkey' , '' );?>" size="50" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_APPLICATION_SECRET_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_APPLICATION_SECRET'); ?> </span> </td> <td> <input type="text" name="twitterconnectsecret" value="<?php echo $this->config->get('twitterconnectsecret' , '' );?>" size="50" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_APPLICATION_CALLBACK_URL_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_APPLICATION_CALLBACK_URL'); ?> </span> </td> <td> <pre><?php echo Uri::root() . 'index.php/component/community/oauth/callback/twitter/login'; ?></pre> </td> </tr> </tbody> </table> <table> <tbody> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_WATERMARK_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_TWITTER_WATERMARK' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('twitterwatermark' ,'ace-switch ace-switch-5', null , $this->config->get('twitterwatermark') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_REIMPORT_PROFILE_LOGIN_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_TWITTER_REIMPORT_PROFILE_LOGIN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('twitterloginimportprofile' ,'ace-switch ace-switch-5', null , $this->config->get('twitterloginimportprofile') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITTER_REIMPORT_AVATAR_LOGIN_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_TWITTER_REIMPORT_AVATAR_LOGIN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('twitterloginimportavatar' ,'ace-switch ace-switch-5', null , $this->config->get('twitterloginimportavatar') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! Vw/ / tmpl/likes.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIKES' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIKES_GROUPS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIKES_GROUPS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('likes_groups' ,'ace-switch ace-switch-5', null , $this->config->get('likes_groups') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIKES_EVENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIKES_EVENTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('likes_events' ,'ace-switch ace-switch-5', null , $this->config->get('likes_events') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIKES_PHOTOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIKES_PHOTOS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('likes_photo' ,'ace-switch ace-switch-5', null , $this->config->get('likes_photo') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIKES_VIDEOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIKES_VIDEOS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('likes_videos' ,'ace-switch ace-switch-5', null , $this->config->get('likes_videos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIKES_PROFILE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIKES_PROFILE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('likes_profile' ,'ace-switch ace-switch-5', null , $this->config->get('likes_profile') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! %�\0 0 tmpl/email.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EMAIL' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMAIL_HTML_EMAILS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EMAIL_HTML_EMAILS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('htmlemail' ,'ace-switch ace-switch-5', null , $this->config->get('htmlemail') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMAIL_COPYRIGHT'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EMAIL_COPYRIGHT' ); ?> </span> </td> <td> <textarea name="copyrightemail" cols="30" rows="5"><?php echo $this->config->get('copyrightemail');?></textarea> </td> </tr> </tbody> </table> </div> </div> </div>PK ! 6�U�2 2 tmpl/profile.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MULTIPROFILES' ); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/jsmultiprofile" target="_blank"><i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> <a href="http://tiny.cc/SetupAmazonS3" target="_blank"><i class="js-icon-facetime-video"></i> <?php echo Text::_('COM_COMMUNITY_DOC_VIDEO'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <div class="space-12"></div> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MULTIPROFILES_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MULTIPROFILES_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('profile_multiprofile' ,'ace-switch ace-switch-5', null , $this->config->get('profile_multiprofile') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! K�� � tmpl/activity.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ACTIVITY_TITLE' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_NEW_TAB_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_NEW_TAB' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('newtab' ,'ace-switch ace-switch-5', null , $this->config->get('newtab') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_ACTIVITY_SORTBY_SETTING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ACTIVITY_SORTBY_SETTING'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('sortactivitybylastupdate' ,'ace-switch ace-switch-5', null , $this->config->get('sortactivitybylastupdate') ); ?> </td> </tr> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_ACTIVITY_PRIVACY_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ACTIVITY_PRIVACY'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('overrideactivityprivacy' ,'ace-switch ace-switch-5', null , $this->config->get('overrideactivityprivacy') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_ACTIVITY_COMMENT_SETTING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ACTIVITY_COMMENT_SETTING'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('allmemberactivitycomment' ,'ace-switch ace-switch-5', null , $this->config->get('allmemberactivitycomment') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! ��,� � tmpl/google.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_API' ); ?></h5> <!-- <div class="widget-toolbar no-border"> <a href="http://tiny.cc/location-integration" target="_blank"><i class="js-icon-info-sign"></i> View Documentation</a> </div> --> </div> <div class="widget-body"> <div class="widget-main"> <table width="100%"> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_API_DESCRIPTION'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_API' ); ?> </span> </td> <td> <select name="maps_api" id="maps_api_select"> <option value="googlemap"<?php echo $this->config->get('maps_api') == 'googlemap' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_GOOGLE');?></option> <option value="openstreetmap"<?php echo $this->config->get('maps_api') == 'openstreetmap' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_OPEN_STREET');?></option> </select> </td> </tr> <tr><td colspan="2"><hr /></td></tr> <tr class="googlemap"> <td class="key" width="200"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GOOGLE_API_KEY_LABEL'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GOOGLE_API_KEY_TIPS' ); ?> </span> </td> <td> <input type="text" name="googleapikey" value="<?php echo $this->config->get('googleapikey' , '' );?>" size="50" /> </td> </tr> <tr class="googlemap"><td colspan="2"><hr /></td></tr> <tr> <td class="key" width="200"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_LOCATION_FIELD_CODE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_LOCATION_FIELD_CODE' ); ?> </span> </td> <td> <?php echo $this->getLocationFieldCodes( 'fieldcodelocation' , $this->config->get('fieldcodelocation') ); ?> </td> </tr> <tr><td colspan="2"><hr /></td></tr> <tr><td colspan="2" class="key"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_NOT_FILL_IN' ); ?></td></tr> <tr> <td class="key" width="200"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_STREET_FIELD_CODE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_STREET_FIELD_CODE' ); ?> </span> </td> <td> <?php echo $this->getFieldCodes( 'fieldcodestreet' , $this->config->get('fieldcodestreet') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_CITY_FIELD_CODE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_CITY_FIELD_CODE' ); ?> </span> </td> <td> <?php echo $this->getFieldCodes( 'fieldcodecity' , $this->config->get('fieldcodecity') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_STATE_FIELD_CODE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_STATE_FIELD_CODE' ); ?> </span> </td> <td> <?php echo $this->getFieldCodes( 'fieldcodestate' , $this->config->get('fieldcodestate') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_COUNTRY_FIELD_CODE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_COUNTRY_FIELD_CODE' ); ?> </span> </td> <td> <?php echo $this->getFieldCodes( 'fieldcodecountry' , $this->config->get('fieldcodecountry') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MAPS_POST_CODE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MAPS_POST_CODE' ); ?> </span> </td> <td> <?php echo $this->getFieldCodes( 'fieldcodepostcode' , $this->config->get('fieldcodepostcode') ); ?> </td> </tr> </table> </div> </div> </div> <script> jQuery( document ).ready(function($) { $('#maps_api_select').on('input change', function() { if ($(this).val() == 'googlemap') $('.googlemap').show(); else $('.googlemap').hide(); }); if ($('#maps_api_select').val() == 'googlemap') $('.googlemap').show(); else $('.googlemap').hide(); }); </script>PK ! �i��� � tmpl/display.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISPLAY_HIDE_MENU_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_HIDE_MENU' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('show_toolbar' ,'ace-switch ace-switch-5', null , $this->config->get('show_toolbar') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISPLAY_NAME_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_NAME' ); ?> </span> </td> <td> <select name="displayname"> <?php $selectedRealName = ( $this->config->get('displayname') == 'name' ) ? 'selected="true"' : ''; $selectedUserName = ( $this->config->get('displayname') == 'username' ) ? 'selected="true"' : ''; ?> <option <?php echo $selectedRealName; ?> value="name"><?php echo Text::_('COM_COMMUNITY_REALNAME_OPTION');?></option> <option <?php echo $selectedUserName; ?> value="username"><?php echo Text::_('COM_COMMUNITY_USERNAME_OPTION');?></option> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISPLAY_PAGINATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_PAGINATION' ); ?> </span> </td> <td> <select name="pagination"> <?php $selected2 = ( $this->config->get('pagination') == '2' ) ? 'selected="true"' : ''; $selected4 = ( $this->config->get('pagination') == '4' ) ? 'selected="true"' : ''; $selected6 = ( $this->config->get('pagination') == '6' ) ? 'selected="true"' : ''; $selected8 = ( $this->config->get('pagination') == '8' ) ? 'selected="true"' : ''; $selected10 = ( $this->config->get('pagination') == '10' ) ? 'selected="true"' : ''; $selected12 = ( $this->config->get('pagination') == '12' ) ? 'selected="true"' : ''; $selected14 = ( $this->config->get('pagination') == '14' ) ? 'selected="true"' : ''; $selected16 = ( $this->config->get('pagination') == '16' ) ? 'selected="true"' : ''; $selected18 = ( $this->config->get('pagination') == '18' ) ? 'selected="true"' : ''; $selected20 = ( $this->config->get('pagination') == '20' ) ? 'selected="true"' : ''; ?> <option <?php echo $selected2; ?> value="2">2</option> <option <?php echo $selected4; ?> value="4">4</option> <option <?php echo $selected6; ?> value="6">6</option> <option <?php echo $selected8; ?> value="8">8</option> <option <?php echo $selected10; ?> value="10">10</option> <option <?php echo $selected12; ?> value="12">12</option> <option <?php echo $selected14; ?> value="14">14</option> <option <?php echo $selected16; ?> value="16">16</option> <option <?php echo $selected18; ?> value="18">18</option> <option <?php echo $selected20; ?> value="20">20</option> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISPLAY_ACTIVITY_DATE_STYLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_ACTIVITY_DATE_STYLE' ); ?> </span> </td> <td> <select name="activitydateformat"> <?php $selectedFixedDate = ( $this->config->get('activitydateformat') == 'fixed' ) ? 'selected="true"' : ''; $selectedLapseDate = ( $this->config->get('activitydateformat') == 'lapse' ) ? 'selected="true"' : ''; ?> <option <?php echo $selectedFixedDate; ?> value="fixed"><?php echo Text::_('COM_COMMUNITY_FIXED_OPTION');?></option> <option <?php echo $selectedLapseDate; ?> value="lapse"><?php echo Text::_('COM_COMMUNITY_LAPSED_OPTION');?></option> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISPLAY_PROFILE_DATE_FORMAT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_PROFILE_DATE_FORMAT' ); ?> </span> </td> <td> <input type="text" name="profileDateFormat" value="<?php echo $this->config->get('profileDateFormat');?>" size="20" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISPLAY_ALLOW_HTML_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_ALLOW_HTML' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('allowhtml' ,'ace-switch ace-switch-5', null , $this->config->get('allowhtml') ); ?> </td> </tr> <input type="hidden" name="showactivityavatar" value="1" /> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISPLAY_ACTIVITY_CONTENT_LENGTH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_ACTIVITY_CONTENT_LENGTH' ); ?> </span> </td> <td> <input type="text" name="streamcontentlength" value="<?php echo $this->config->get('streamcontentlength');?>" size="20" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_DISPLAY_SINGULAR_NUMBER_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_DISPLAY_SINGULAR_NUMBER' ); ?> </span> </td> <td> <input type="text" name="singularnumber" value="<?php echo $this->config->get('singularnumber');?>" size="20" /> </td> </tr> </tbody> </table> </div> </div> </div>PK ! ��q q tmpl/frontpage_file_upload.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FILESHARING_FRONTPAGE'); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td class="key" width="200"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_SHOW_FILESHARING_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_SHOW_FILESHARING'); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('file_sharing_activity' ,'ace-switch ace-switch-5', null , $this->config->get('file_sharing_activity') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_MAX_FILESHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_MAX_FILESHARING' ); ?> </span> </td> <td valign="top"> <input type="text" name="file_sharing_activity_max" value="<?php echo $this->config->get('file_sharing_activity_max', 0);?>" size="4" /> (MB) <small class="form-text"><?php echo Text::sprintf('COM_COMMUNITY_CONFIGURATION_PHOTOS_MAXIMUM_UPLOAD_SIZE_FROM_PHP', $this->uploadLimit );?></small> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_EXTENSION_FILESHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_EXTENSION_FILESHARING' ); ?> </span> </td> <td valign="top"> <input type="text" name="file_sharing_activity_ext" value="<?php echo $this->config->get('file_sharing_activity_ext', 0);?>" size="4" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_PERUPLOAD_FILESHARING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_PERUPLOAD_FILESHARING' ); ?> </span> </td> <td valign="top"> <input type="text" name="file_sharing_limit_per_upload" value="<?php echo $this->config->get('file_sharing_limit_per_upload', 10);?>" size="4" /> </td> </tr> </tbody> </table> </div> </div> </div> PK ! �/�� � tmpl/myblog.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <fieldset class="adminform"> <legend><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MYBLOG_INTEGRATIONS' ); ?></legend> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="300" class="key"> <span class="js-tooltip" title="::<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MYBLOG_ENABLE_IN_PROFILE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MYBLOG_ENABLE_IN_PROFILE' ); ?> </span> </td> <td valign="top"> <?php echo HTMLHelper::_('select.booleanlist' , 'enablemyblogicon' , null , $this->config->get('enablemyblogicon') , Text::_('COM_COMMUNITY_YES_OPTION') , Text::_('COM_COMMUNITY_NO_OPTION') ); ?> </td> </tr> </tbody> </table> </fieldset>PK ! pB�ڗ � tmpl/polls.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5> </h5> </div> <div class="widget-body"> <div class="widget-main"> <fieldset class="adminform"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_POLLS_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_POLLS_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablepolls' ,'ace-switch ace-switch-5', null , $this->config->get('enablepolls') ); ?> </td> </tr> <tr> <td width="350" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_POLLS_ALLOW_GUEST_SEARCH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_POLLS_ALLOW_GUEST_SEARCH' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableguestsearchpolls' ,'ace-switch ace-switch-5', null , $this->config->get('enableguestsearchpolls') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_POLLS_MODERATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_POLLS_MODERATION' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('moderatepollcreation' ,'ace-switch ace-switch-5', null , $this->config->get('moderatepollcreation') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_POLLS_ALLOW_CREATION_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_POLLS_ALLOW_CREATION' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('createpolls' ,'ace-switch ace-switch-5', null , $this->config->get('createpolls') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_POLL_TIME_FORMAT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_POLL_TIME_FORMAT' ); ?> </span> </td> <td> <select name="pollshowampm"> <option value="1"<?php echo ( $this->config->get('pollshowampm') == '1' ) ? ' selected="true"' : '';?>><?php echo Text::_('COM_COMMUNITY_12H_OPTION');?></option> <option value="0"<?php echo ( $this->config->get('pollshowampm') == '0' ) ? ' selected="true"' : '';?>><?php echo Text::_('COM_COMMUNITY_24H_OPTION');?></option> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_POLLS_CREATION_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_POLLS_CREATION_LIMIT' ); ?> </span> </td> <td> <input type="text" name="pollcreatelimit" value="<?php echo $this->config->get('pollcreatelimit' );?>" size="10" /> </td> </tr> </tbody> </table> </fieldset> </div> </div> </div> PK ! �%� � tmpl/moods_badges.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MOODS_BADGES_BACKGROUNDS' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REACTIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REACTIONS' ); ?> </span> </td> <td valign="top"> <select name="enablereaction"> <option <?php echo ( $this->config->get('enablereaction') == '0' ) ? 'selected="true"' : ''; ?> value="0"><?php echo Text::_('COM_COMMUNITY_REACTION_OPTION_LIKES');?></option> <option <?php echo ( $this->config->get('enablereaction') == '1' ) ? 'selected="true"' : ''; ?> value="1"><?php echo Text::_('COM_COMMUNITY_REACTION_OPTION_LIKES_REACTIONS');?></option> </select> </td> </tr> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MOODS_BADGES_ENABLE_BACKGROUNDS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MOODS_BADGES_ENABLE_BACKGROUNDS' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('enablebackground' ,'ace-switch ace-switch-5', null , $this->config->get('enablebackground') ); ?> </td> </tr> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MOODS_BADGES_ENABLE_MOODS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MOODS_BADGES_ENABLE_MOODS' ); ?> </span> </td> <td valign="top"> <?php echo CHTMLInput::checkbox('enablemood' ,'ace-switch ace-switch-5', null , $this->config->get('enablemood') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo TexT::_('COM_COMMUNITY_CONFIGURATION_MOODS_BADGES_ENABLE_BADGES_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_MOODS_BADGES_ENABLE_BADGES')?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enable_badges', 'ace-switch ace-switch-5', null, $this->config->get('enable_badges'))?> </td> </tr> </tbody> </table> </div> </div> </div> PK ! �Z��2 �2 tmpl/videos.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5> </h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/jsvideolink" target="_blank"> <i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC_REQUIREMENT'); ?></a> <a href="http://tiny.cc/jsvideosetup" target="_blank"> <i class="js-icon-wrench"></i> <?php echo Text::_('COM_COMMUNITY_DOC_SETTING_UP'); ?></a> <a href="http://tiny.cc/SetupVidUploads" target="_blank"><i class="js-icon-facetime-video"></i> <?php echo Text::_('COM_COMMUNITY_DOC_VIDEO'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <fieldset class="adminform"> <table> <tbody> <tr> <td class="key" width="250"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablevideos' ,'ace-switch ace-switch-5', null , $this->config->get('enablevideos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_GUEST_SEARCH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_GUEST_SEARCH' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableguestsearchvideos' ,'ace-switch ace-switch-5', null , $this->config->get('enableguestsearchvideos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_PROFILE_VIDEO_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_PROFILE_VIDEO_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableprofilevideo' ,'ace-switch ace-switch-5', null , $this->config->get('enableprofilevideo') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_UPLOAD_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_UPLOAD_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablevideosupload' ,'ace-switch ace-switch-5', null , $this->config->get('enablevideosupload') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_CREATION_LIMIT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_CREATION_LIMIT' ); ?> </span> </td> <td> <input type="text" name="videouploadlimit" value="<?php echo $this->config->get('videouploadlimit' );?>" size="10" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_MAP_DEFAULT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_MAP_DEFAULT' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('videosmapdefault' ,'ace-switch ace-switch-5', null , $this->config->get('videosmapdefault') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_DELETE_ORIGINAL_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_DELETE_ORIGINAL' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('deleteoriginalvideos' ,'ace-switch ace-switch-5', null , $this->config->get('deleteoriginalvideos') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_EXTENSIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_EXTENSIONS' ); ?> </span> </td> <td> <input type="text" size="40" name="videoextensions" value="<?php echo $this->config->get('videoextensions', 'mp4');?>" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_ROOT_FOLDER_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_ROOT_FOLDER' ); ?> </span> </td> <td> <input type="text" size="40" name="videofolder" value="<?php echo $this->config->get('videofolder');?>" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_MAXIMUM_UPLOAD_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_MAXIMUM_UPLOAD_SIZE' ); ?> </span> </td> <td> <div><input type="text" size="3" name="maxvideouploadsize" value="<?php echo $this->config->get('maxvideouploadsize');?>" /> (MB)</div> <small class="form-text"><?php echo Text::sprintf('COM_COMMUNITY_CONFIGURATION_VIDEOS_MAXIMUM_UPLOAD_SIZE_FROM_PHP', $this->uploadLimit );?></small> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_FFMPEG_PATH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_FFMPEG_PATH' ); ?> </span> </td> <td> <input name="ffmpegPath" type="text" size="60" value="<?php echo $this->config->get('ffmpegPath');?>" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_FLVTOOL2_PATH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_FLVTOOL2_PATH' ); ?> </span> </td> <td> <input name="flvtool2" type="text" size="60" value="<?php echo $this->config->get('flvtool2');?>" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_QUANTIZER_SCALE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_QUANTIZER_SCALE' ); ?> </span> </td> <td> <?php echo $this->lists['qscale']; ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_SIZE' ); ?> </span> </td> <td> <?php echo $this->lists['videosSize']; ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_THUMB_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_THUMB_SIZE' ); ?> </span> </td> <td> <?php echo $this->lists['videoThumbSize']; ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_THUMB_STREAM_SIZE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_THUMB_STREAM_SIZE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablevideosthumbbigsize' ,'ace-switch ace-switch-5', null , $this->config->get('enablevideosthumbbigsize') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_CUSTOM_COMMAND_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_CUSTOM_COMMAND' ); ?> </span> </td> <td> <input name="customCommandForVideo" type="text" size="60" value="<?php echo $this->config->get('customCommandForVideo');?>" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_PSEUDO_STREAMING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_PSEUDO_STREAMING' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablevideopseudostream' ,'ace-switch ace-switch-5', null , $this->config->get('enablevideopseudostream') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_DEBUGGING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_DEBUGGING' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('videodebug' ,'ace-switch ace-switch-5', null , $this->config->get('videodebug') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_WINDOW_MODE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_WINDOW_MODE' ); ?> </span> </td> <td valign="top"> <?php echo $this->lists['videoMode']; ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_STREAM_VIDEO_PLAYER_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_STREAM_VIDEO_PLAYER'); ?> </span> </td> <td> <?php echo $this->lists['videoNative']; ?> </td> </tr> </tbody> </table> </fieldset> </div> </div> </div> <br> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5>Zencoder</h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/jszencoder" target="_blank"><?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <fieldset class="adminform"> <div class="space-12"></div> <p><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_ZENCODER_INTEGRATIONS_INFO' );?></p> <div class="space-24"></div> <table class="admintable" cellspacing="1"> <tbody> <tr> <td class="key" width="250"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_ZENCODER_ACCOUNT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_ZENCODER_ACCOUNT' ); ?> </span> </td> <td> <a onclick="azcommunity.registerZencoderAccount()" class="" href="javascript: void(0);"><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_ZENCODER_CREATE_ACCOUNT'); ?></a> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_ZENCODER_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_ZENCODER_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enable_zencoder' ,'ace-switch ace-switch-5', null , $this->config->get('enable_zencoder') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_VIDEOS_ZENCODER_API_KEY_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_VIDEOS_ZENCODER_API_KEY' ); ?> </span> </td> <td> <input name="zencoder_api_key" type="text" size="60" value="<?php echo $this->config->get('zencoder_api_key');?>" /> </td> </tr> </tbody> </table> </fieldset> </div> </div> </div> PK ! P�$ tmpl/karma.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA' ); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/karmasystem" target="_blank"><i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="120" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA_ENABLE' ); ?> </span> </td> <td > <?php echo CHTMLInput::checkbox('enablekarma' ,'ace-switch ace-switch-5', null , $this->config->get('enablekarma') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_DEFAULT_POINTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA_DEFAULT_POINTS' ); ?> </span> </td> <td> <input type="text" name="defaultpoint" value="<?php echo $this->config->get('defaultpoint');?>" /> </td> </tr> <tr> <td class="key" > <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_POINTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA_SMALLER_THAN' ); ?> </span> </td> <td> <?php echo $this->getKarmaHTML( 'point0' , $this->config->get('point0'), false );?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_POINTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA_GREATER_THAN' ); ?> </span> </td> <td> <?php echo $this->getKarmaHTML( 'point1' , $this->config->get('point1') , false, 'point0');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_POINTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA_GREATER_THAN' ); ?> </span> </td> <td> <?php echo $this->getKarmaHTML( 'point2' , $this->config->get('point2') );?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_POINTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA_GREATER_THAN' ); ?> </span> </td> <td> <?php echo $this->getKarmaHTML( 'point3' , $this->config->get('point3') );?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_POINTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA_GREATER_THAN' ); ?> </span> </td> <td> <?php echo $this->getKarmaHTML( 'point4' , $this->config->get('point4') );?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_KARMA_POINTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_KARMA_GREATER_THAN' ); ?> </span> </td> <td> <?php echo $this->getKarmaHTML( 'point5' , $this->config->get('point5') );?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! ��e�� � tmpl/notifications_ajax.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_NOTIFICATIONS_AJAX'); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_NOTIFICATIONS_AJAX_AUTO_REFRESH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_NOTIFICATIONS_AJAX_AUTO_REFRESH' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('notifications_ajax_enable_refresh' ,'ace-switch ace-switch-5', null , $this->config->get('notifications_ajax_enable_refresh') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_NOTIFICATIONS_AJAX_INTERVAL_TIME_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_NOTIFICATIONS_AJAX_INTERVAL_TIME' ); ?> </span> </td> <td> <select name="notifications_ajax_refresh_interval"> <?php $options = array(1000, 2000, 3000, 5000, 10000, 20000, 30000, 60000); $optionLabels = array('COM_COMMUNITY_1_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_2_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_3_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_5_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_10_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_20_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_30_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_60_SEC_AJAX_INTERVAL'); $selectedValue = (int) $this->config->get('notifications_ajax_refresh_interval'); $selectedValue = in_array($selectedValue, $options) ? $selectedValue : (int) $this->config->get('notifications_ajax_refresh_interval' ); foreach ($options as $index => $value) { echo '<option value="' . $value . '"' . ($value == $selectedValue ? ' selected' : '') . '>' . Text::_($optionLabels[$index]) . '</option>'; } ?> </select> </td> </tr> </tbody> </table> </div> </div> </div>PK ! �m�W� � tmpl/frontpage.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FRONTPAGE_SITE_TITLE_DESC'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FRONTPAGE_SITE_TITLE' ); ?> </span> </td> <td valign="top"> <input type="text" name="sitename" value="<?php echo $this->config->get('sitename');?>" size="40" /> </td> </tr> </tbody> </table> </div> </div> </div>PK ! F��3 3 tmpl/registrations.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS'); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ENABLE_AVATAR_UPLOAD_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ENABLE_AVATAR_UPLOAD'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableavataruploadregister', 'ace-switch ace-switch-5', null, $this->config->get('enableavataruploadregister')); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ENABLE_TERMS_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ENABLE_TERMS'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enableterms', 'ace-switch ace-switch-5', null, $this->config->get('enableterms')); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_TERMS_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_TERMS'); ?> </span> </td> </tr> <tr> <td colspan="2"> <?php echo $this->editor->displayEditor('registrationTerms', $this->config->get('registrationTerms'), '100%', '50', '10', '20', false); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ENABLE_GDPR_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ENABLE_GDPR'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablegdpr', 'ace-switch ace-switch-5', null, $this->config->get('enablegdpr')); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_REPEAT_EMAIL_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_REPEAT_EMAIL'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('check_register_multiple_email', 'ace-switch ace-switch-5', null, $this->config->get('check_register_multiple_email')); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ALLOWEDDOMAINS_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ALLOWEDDOMAINS'); ?> </span> </td> <td> <input type="text" name="alloweddomains" value="<?php echo $this->config->get('alloweddomains'); ?>" size="35" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_DENIEDDOMAINS_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_DENIEDDOMAINS'); ?> </span> </td> <td> <input type="text" name="denieddomains" value="<?php echo $this->config->get('denieddomains'); ?>" size="35" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ALLOW_PROFILE_DELETION_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ALLOW_PROFILE_DELETION'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('profile_deletion', 'ace-switch ace-switch-5', null, $this->config->get('profile_deletion')); ?> </td> </tr> <tr> <td colspan="2"> <div class="alert alert-info"><?php echo str_replace("_QQQ_", '"', Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_ALLOW_PROFILE_DELETION_DESC')); ?></div> </td> </tr> </tbody> </table> </div> </div> </div> <div class="space-12"></div> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_RECAPTCHA'); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_RECAPTCHA_ENABLE_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_RECAPTCHA_ENABLE'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('nocaptcha', 'ace-switch ace-switch-5', null, $this->config->get('nocaptcha')); ?> </td> </tr> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_RECAPTCHAV3_ENABLE_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_RECAPTCHAV3_ENABLE'); ?> </span> </td> <td> <div> <?php echo CHTMLInput::checkbox('recaptchav3', 'ace-switch ace-switch-5', null, $this->config->get('recaptchav3')); ?> </div> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_NOCAPTCHA_PUBLIC_KEY_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_NOCAPTCHA_PUBLIC_KEY'); ?> </span> </td> <td> <input type="text" name="nocaptchapublic" value="<?php echo $this->config->get('nocaptchapublic'); ?>" size="35" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_NOCAPTCHA_PRIVATE_KEY_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_NOCAPTCHA_PRIVATE_KEY'); ?> </span> </td> <td> <input type="text" name="nocaptchaprivate" value="<?php echo $this->config->get('nocaptchaprivate'); ?>" size="35" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_NOCAPTCHA_LANGUAGE_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_NOCAPTCHA_STYLE'); ?> </span> </td> <td> <select name="nocaptchatheme"> <option value="light" <?php echo $this->config->get('nocaptchatheme') == 'light' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_LIGHT'); ?></option> <option value="dark" <?php echo $this->config->get('nocaptchatheme') == 'dark' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_DARK'); ?></option> </select> </td> </tr> </tbody> </table> </div> </div> <div class="space-12"></div> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_CLOUDFLARE'); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_CLOUDFLARE_ENABLE_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_CLOUDFLARE_ENABLE'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('nocloudflare', 'ace-switch ace-switch-5', null, $this->config->get('nocloudflare')); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_CLOUDFLARE_PUBLIC_KEY_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_CLOUDFLARE_PUBLIC_KEY'); ?> </span> </td> <td> <input type="text" name="cloudflarepublic" value="<?php echo $this->config->get('cloudflarepublic'); ?>" size="35" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_CLOUDFLARE_PRIVATE_KEY_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_CLOUDFLARE_PRIVATE_KEY'); ?> </span> </td> <td> <input type="text" name="cloudflareprivate" value="<?php echo $this->config->get('cloudflareprivate'); ?>" size="35" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" > <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_NOCAPTCHA_STYLE'); ?> </span> </td> <td> <select name="cloudflaretheme"> <option value="light" <?php echo $this->config->get('cloudflaretheme') == 'light' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_LIGHT'); ?></option> <option value="dark" <?php echo $this->config->get('cloudflaretheme') == 'dark' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_DARK'); ?></option> </select> </td> </tr> </tbody> </table> </div> </div> </div> <div class="space-12"></div> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_Hcaptcha'); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_Hcaptcha_ENABLE_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_Hcaptcha_ENABLE'); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('nohcaptcha', 'ace-switch ace-switch-5', null, $this->config->get('nohcaptcha')); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_Hcaptcha_PUBLIC_KEY_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_Hcaptcha_PUBLIC_KEY'); ?> </span> </td> <td> <input type="text" name="hcaptchapublic" value="<?php echo $this->config->get('hcaptchapublic'); ?>" size="35" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_Hcaptcha_PRIVATE_KEY_TIPS'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_Hcaptcha_PRIVATE_KEY'); ?> </span> </td> <td> <input type="text" name="hcaptchaprivate" value="<?php echo $this->config->get('hcaptchaprivate'); ?>" size="35" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REGISTRATIONS_NOCAPTCHA_STYLE'); ?> </span> </td> <td> <select name="hcaptchatheme"> <option value="light" <?php echo $this->config->get('hcaptchatheme') == 'light' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_LIGHT'); ?></option> <option value="dark" <?php echo $this->config->get('hcaptchatheme') == 'dark' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_DARK'); ?></option> </select> </td> </tr> </tbody> </table> </div> </div> </div> </div> <script> let boxes = document.querySelectorAll("input[name='nocloudflare'], input[name='nohcaptcha'], input[name='nocaptcha']"); boxes.forEach(b => b.addEventListener("change", tick)); function tick(e) { let state = e.target.checked; boxes.forEach(b => b.checked = false); e.target.checked = state; } </script>PK ! �ݛȜ � tmpl/followers.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FOLLOW' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_ENABLE_FOLLOWING_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ENABLE_FOLLOWING' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablefollowers' ,'ace-switch ace-switch-5', null , $this->config->get('enablefollowers') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! ��2 tmpl/google_api.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GOOGLE_API'); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/0e8iez" target="_blank"><i class="js-icon-wrench"></i> <?php echo Text::_('COM_COMMUNITY_DOC_SETTING_UP'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GOOGLE_CLIENT_ID_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GOOGLE_CLIENT_ID' ); ?> </span> </td> <td> <input type="text" name="googleclientid" value="<?php echo $this->config->get('googleclientid' , '' );?>" size="50" /> </td> </tr> </tbody> </table> <table> <tbody> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GOOGLE_WATERMARK_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GOOGLE_WATERMARK' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('googlewatermark' ,'ace-switch ace-switch-5', null , $this->config->get('googlewatermark') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_GOOGLE_REIMPORT_AVATAR_LOGIN_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GOOGLE_REIMPORT_AVATAR_LOGIN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('googleloginimportavatar' ,'ace-switch ace-switch-5', null , $this->config->get('googleloginimportavatar') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! �3� tmpl/index.htmlnu �[��� <html> <body></body> </html>PK ! �-3 3 tmpl/youtube_api.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_YOUTUBE_API'); ?></h5> <div class="widget-toolbar no-border"> <a href="https://documentation.jomsocial.com/wiki/Setting_up_youtube_integration" target="_blank"><i class="js-icon-wrench"></i> <?php echo Text::_('COM_COMMUNITY_DOC_SETTING_UP'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_YOUTUBE_API_TURN_ON_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_YOUTUBE_API_TURN_ON' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('youtubeapi' ,'ace-switch ace-switch-5', null , $this->config->get('youtubeapi') ); ?> </td> </tr> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_YOUTUBE_CLIENT_ID_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_YOUTUBE_API_KEY' ); ?> </span> </td> <td> <input type="text" name="youtubekey" value="<?php echo $this->config->get('youtubekey' , '' );?>" size="50" /> </td> </tr> </tbody> </table> </div> </div> </div>PK ! � +X� � tmpl/network_info.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <fieldset class="adminform"> <legend><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_INFO');?></legend> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_NAME_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_NAME' ); ?> </span> </td> <td><?php echo $this->JSNInfo['network_site_name']; ?></td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_URL_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_URL' ); ?> </span> </td> <td><a href="<?php echo $this->JSNInfo['network_site_url'] ?>" target="_blank"><?php echo $this->JSNInfo['network_site_url'] ?></a></td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_LANGUAGE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_LANGUAGE' ); ?> </span> </td> <td><?php echo $this->JSNInfo['network_language']; ?></td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_MEMBERS_COUNT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_MEMBERS_COUNT' ); ?> </span> </td> <td><?php echo $this->JSNInfo['network_member_count']; ?></td> </tr> <tr> <td width="300" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_GROUPS_COUNT_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JSNETWORK_SITE_GROUPS_COUNT' ); ?> </span> </td> <td><?php echo $this->JSNInfo['network_group_count']; ?></td> </tr> </tbody> </table> </fieldset>PK ! 7>d� � tmpl/network.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <table width="100%"> <tr> <td width="50%"> <?php require_once( dirname(__FILE__) . '/network_form.php' ); ?> </td> <td width="50%"> <?php require_once( dirname(__FILE__) . '/network_info.php' ); ?> </td> </tr> </table> PK ! �I�P� � tmpl/embedly.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EMBEDLY' ); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/js-embedly" target="_blank"><i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC') ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table width="100%"> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_ENABLE_EMBEDLY_DESCRIPTION'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ENABLE_EMBEDLY' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enable_embedly' ,'ace-switch ace-switch-5', null , $this->config->get('enable_embedly') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_APIKEY_DESCRIPTION'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_APIKEY')?> </span> </td> <td valign="top"> <div><input type="text" name="embedly_apikey" value="<?php echo $this->config->get('embedly_apikey'); ?>" size="5" /></div> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_APIKEY_DESCRIPTION'); ?>"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_APIKEY')?> </span> </td> <td valign="top"> <div><input type="text" name="embedly_card_apikey" value="<?php echo $this->config->get('embedly_card_apikey'); ?>" size="5" /></div> </td> </tr> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_POSITION_DESCRIPTION'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_POSITION' ); ?> </span> </td> <td> <select name="enable_embedly_card_position"> <option value="right"<?php echo $this->config->get('enable_embedly_card_position') == 'right' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_RIGHT');?></option> <option value="center"<?php echo $this->config->get('enable_embedly_card_position') == 'center' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_CENTER');?></option> <option value="left"<?php echo $this->config->get('enable_embedly_card_position') == 'left' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_LEFT');?></option> </select> </td> </tr> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_TEMPLATE_DESCRIPTION'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_TEMPLATE' ); ?> </span> </td> <td> <select name="enable_embedly_card_template"> <option value="light"<?php echo $this->config->get('enable_embedly_card_template') == 'light' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_TEMPLATE_LIGHT_OPTION');?></option> <option value="dark"<?php echo $this->config->get('enable_embedly_card_template') == 'dark' ? ' selected="selected"' : ''; ?>><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_TEMPLATE_DARK_OPTION');?></option> </select> </td> </tr> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_MINIMALIST_DESIGN_DESCRIPTION'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EMBEDLY_CARD_MINIMALIST_DESIGN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enable_embedly_card_minimalist' ,'ace-switch ace-switch-5', null , $this->config->get('enable_embedly_card_minimalist') ); ?> </td> </tr> </table> </div> </div> </div> PK ! @"�� tmpl/notifications.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <fieldset class="adminform"> <legend><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_NOTIFICATIONS' ); ?></legend> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="300" class="key"> <span class="js-tooltip" title="::<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_NOTIFICATIONS_SEND_VIA_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_NOTIFICATIONS_SEND_VIA' ); ?> </span> </td> <td valign="top"> <?php echo $this->getNotifyTypeHTML( $this->config->get( 'notifyby' ) ); ?> </td> </tr> </tbody> </table> </fieldset>PK ! �T T tmpl/limits.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS' ); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/dailylimits" target="_blank"> <i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_MESSAGES_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_MESSAGES' ); ?> </span> </td> <td> <input type="text" name="pmperday" value="<?php echo $this->config->get('pmperday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_PAGES_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_PAGES' ); ?> </span> </td> <td> <input type="text" name="limit_pages_perday" value="<?php echo $this->config->get('limit_pages_perday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_GROUPS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_GROUPS' ); ?> </span> </td> <td> <input type="text" name="limit_groups_perday" value="<?php echo $this->config->get('limit_groups_perday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_EVENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_EVENTS' ); ?> </span> </td> <td> <input type="text" name="limit_events_perday" value="<?php echo $this->config->get('limit_events_perday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_PHOTOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_PHOTOS' ); ?> </span> </td> <td> <input type="text" name="limit_photos_perday" value="<?php echo $this->config->get('limit_photos_perday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_VIDEOS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_VIDEOS' ); ?> </span> </td> <td> <input type="text" name="limit_videos_perday" value="<?php echo $this->config->get('limit_videos_perday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_POLLS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_POLLS' ); ?> </span> </td> <td> <input type="text" name="limit_polls_perday" value="<?php echo $this->config->get('limit_polls_perday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_FRIENDS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_FRIENDS' ); ?> </span> </td> <td> <input type="text" name="limit_friends_perday" value="<?php echo $this->config->get('limit_friends_perday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_FILES_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LIMITS_NEW_FILES' ); ?> </span> </td> <td> <input type="text" name="limit_files_perday" value="<?php echo $this->config->get('limit_files_perday');?>" class="input-small" /> <?php echo Text::_('COM_COMMUNITY_DAILY');?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! �ʢ� � tmpl/twitch_api.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITCH_API'); ?></h5> <div class="widget-toolbar no-border"> <a href="https://documentation.jomsocial.com/wiki/Setting_up_twitch_integration" target="_blank"><i class="js-icon-wrench"></i> <?php echo Text::_('COM_COMMUNITY_DOC_SETTING_UP'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_TWITCH_CLIENT_ID_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_TWITCH_CLIENT_ID' ); ?> </span> </td> <td> <input type="text" name="twitchclientid" value="<?php echo $this->config->get('twitchclientid' , '' );?>" size="50" /> </td> </tr> </tbody> </table> </div> </div> </div>PK ! x� � � tmpl/navigation.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <script type="text/javascript"> Joomla.submitbutton = function(action){ submitbutton( action ); } </script> <!-- <div id="submenu-box"> <div class="t"><div class="t"><div class="t"></div></div></div> <div class="m"> <ul id="submenu" class="jsconfiguration"> <li><a href="#" onclick="return false;" id="main" class="active"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_SITE_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="media"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_MEDIA_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="antispam"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ANTISPAM_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="groups"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_GROUPS_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="events"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EVENTS_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="layout"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LAYOUT_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="privacy"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_PRIVACY_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="facebook-connect"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="remote-storage"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_REMOTE_TOOLBAR' ); ?></a></li> <li><a href="#" onclick="return false;" id="integrations"><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_INTEGRATIONS_TOOLBAR' ); ?></a></li> </ul> <div class="clr"></div> </div> <div class="b"><div class="b"><div class="b"></div></div></div> </div> --> <div class="clr"></div> PK ! p���� � tmpl/autoupdate.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <fieldset class="adminform"> <legend><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_AUTOUPDATE_TOOLBAR' ); ?></legend> <table class="admintable" cellspacing="1"> <tbody> <tr> <td width="350" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_AUTOUPDATE_ORDERCODE'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_AUTOUPDATE_ORDERCODE' ); ?> </span> </td> <td valign="top"> <input type="text" id="autoupdateordercode" data-orig="<?php echo $this->config->get('autoupdateordercode' , '' );?>" name="autoupdateordercode" value="<?php echo $this->config->get('autoupdateordercode' , '' );?>" size="50" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_AUTOUPDATE_EMAIL'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_AUTOUPDATE_EMAIL' ); ?> </span> </td> <td valign="top"> <input type="text" id="autoupdateemail" data-orig="<?php echo $this->config->get('autoupdateemail' , '' );?>" name="autoupdateemail" value="<?php echo $this->config->get('autoupdateemail' , '' );?>" size="50" /> </td> </tr> <tr> <td class="key"> </td> <td valign="top"> <?php if($this->isuptodate): ?> <p><img src="<?php echo COMMUNITY_ASSETS_URL; ?>/images/notice-success.png"> <?php echo Text::_('COM_COMMUNITY_CONFIGURATION_AUTOUPDATE_UPTODATE_MSG') ?></p> <?php else: ?> <p><img src="<?php echo COMMUNITY_ASSETS_URL; ?>/images/notice-notice.png"> <?php $err=CAutoUpdate::getError(); echo array_shift($err); ?></p> <?php endif;?> <input data-inprogresstext="<?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_AUTOUPDATE_INPROGRESS' ); ?>" type="button" id="autoupdatesubmit" name="checkautoupdate" value="<?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_CHECK_AUTOUPDATE' ); ?>" onclick="azcommunity.runAutoUpdate(); return false;" /> <img style="display:none;" class="autoupdate-loader" src="<?php echo COMMUNITY_BASE_ASSETS_URL; ?>/ajax-loader.gif"> <span id="autoupdate-progress"></span> </td> </tr> </tbody> </table> </fieldset> PK ! �k�- - tmpl/bookmarkings.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_SOCIALBOOKMARKS' ); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/socbookmark" target="_blank"><i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SOCIALBOOKMARKS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_SOCIALBOOKMARKS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablesharethis' ,'ace-switch ace-switch-5', null , $this->config->get('enablesharethis') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SOCIALBOOKMARKS_SHARE_VIA_EMAIL'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_SOCIALBOOKMARKS_SHARE_VIA_EMAIL' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('shareviaemail' ,'ace-switch ace-switch-5', null , $this->config->get('shareviaemail') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! �]3ϵ � tmpl/default.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <form action="index.php" id="adminForm" method="post" name="adminForm" enctype="multipart/form-data"> <div id="config-document"> <?php switch ($this->cfgSection) { case 'license': ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/license.php' ); ?> </div> </div> <?php break; case 'site': ?> <div class="row-fluid"> <div class="span6"> <?php require_once( dirname(__FILE__) . '/reportings.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/advance_search.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/cronprocess.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/activity.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/frontpage_file_upload.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/likes.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/followers.php' ); ?> </div> <div class="span6"> <?php require_once( dirname(__FILE__) . '/frontpage.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/bookmarkings.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/featured.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/notifications_ajax.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/walls.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/time_offset.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/email.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/status.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/profile.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/filtering.php' ); ?> </div> </div> <?php break; case 'daily-limits': ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/limits.php' ); ?> </div> </div> <?php break; case 'layout': ?> <div class="row-fluid"> <div class="span6"> <?php require_once( dirname(__FILE__) . '/display.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/frontpage_options.php' ); ?> </div> <div class="span6"> <?php require_once( dirname(__FILE__) . '/featured_listing.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/featured_stream.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/moods_badges.php'); ?> </div> </div> <?php break; case 'privacy': ?> <?php require_once( dirname(__FILE__) . '/privacy.php' ); ?> <?php break; case 'remote-storage': ?> <div class="row-fluid"> <div class="span6"> <?php require_once( dirname(__FILE__) . '/remote_storage_methods.php' ); ?> </div> <div class="span6"> <?php require_once( dirname(__FILE__) . '/remote_storage_s3.php' ); ?> </div> </div> <?php break; case 'messaging' : ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/messaging.php' ); ?> </div> </div> <?php break; case 'integrations': ?> <div class="row-fluid"> <div class="span6"> <?php require_once( dirname(__FILE__) . '/facebook_api.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/google_api.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/twitter_api.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/linkedin_api.php' ); ?> </div> <div class="span6"> <?php require_once( dirname(__FILE__) . '/google.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/embedly.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/akismet.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/twitch_api.php' ); ?> <div class="space-12"></div> <?php require_once( dirname(__FILE__) . '/youtube_api.php' ); ?> </div> </div> <?php break; case 'registration': ?> <div class="row-fluid"> <div class="span6"> <?php require_once( dirname(__FILE__) . '/registrations.php' ); ?> </div> <div class="span6"> <?php require_once( dirname(__FILE__) . '/registration_invite.php' ); ?> </div> </div> <?php break; case 'karma': $mainframe = Factory::getApplication(); $mainframe->redirect('index.php?option=com_community&view=badges'); ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/karma.php' ); ?> </div> </div> <?php break; case 'video': ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/videos.php' ); ?> </div> </div> <?php break; case 'page': ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/pages.php' ); ?> </div> </div> <?php break; case 'group': ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/groups.php' ); ?> </div> </div> <?php break; case 'event': ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/events.php' ); ?> </div> </div> <?php break; case 'photo': ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/photos.php' ); ?> </div> </div> <?php break; case 'polls': ?> <div class="row-fluid"> <div class="span12"> <?php require_once( dirname(__FILE__) . '/polls.php' ); ?> </div> </div> <?php break; } ?> </div> <?php echo HTMLHelper::_( 'form.token' ); ?> <input type="hidden" name="task" value="saveconfig" /> <input type="hidden" name="view" value="configuration" /> <input type="hidden" name="cfgSection" value="<?php echo $this->cfgSection; ?>" /> <input type="hidden" name="option" value="com_community" /> </form> PK ! �^p] ] tmpl/facebook_api.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JFBC' ); ?></h5> <div class="widget-toolbar no-border"> <a href="http://tiny.cc/fn450w" target="_blank"><i class="js-icon-wrench"></i> <?php echo Text::_('COM_COMMUNITY_DOC_SETTING_UP'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_JFBC_LABEL'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_JFBC_LABEL' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('usejfbc' ,'ace-switch ace-switch-5', null , $this->config->get('usejfbc') ); ?> </td> </tr> </tbody> </table> </div> </div> </div> <div class="space-12"></div> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_API' ); ?></h5> <div class="widget-toolbar no-border"> <!-- <a href="http://tiny.cc/jssysreq" target="_blank"><i class="js-icon-info-sign"></i> <?php echo Text::_('COM_COMMUNITY_DOC_REQUIREMENT'); ?></a> --> <a href="http://tiny.cc/jsfbsetup" target="_blank"><i class="js-icon-wrench"></i> <?php echo Text::_('COM_COMMUNITY_DOC_SETTING_UP'); ?></a> <a href="http://tiny.cc/SetupFBConnect" target="_blank"><i class="js-icon-facetime-video"></i> <?php echo Text::_('COM_COMMUNITY_DOC'); ?></a> </div> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="200" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_API_KEY_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_API_KEY' ); ?> </span> </td> <td> <input type="text" name="fbconnectkey" value="<?php echo $this->config->get('fbconnectkey' , '' );?>" size="50" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_APPLICATION_SECRET_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_APPLICATION_SECRET' ); ?> </span> </td> <td> <input type="text" name="fbconnectsecret" value="<?php echo $this->config->get('fbconnectsecret' , '' );?>" size="50" /> </td> </tr> </tbody> </table> <table> <tbody> <tr> <td width="350" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_IMPORT_SIGNUP_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_IMPORT_SIGNUP' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('fbsignupimport' ,'ace-switch ace-switch-5', null , $this->config->get('fbsignupimport') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_WATERMARK_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_WATERMARK' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('fbwatermark' ,'ace-switch ace-switch-5', null , $this->config->get('fbwatermark') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_REIMPORT_PROFILE_LOGIN_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_REIMPORT_PROFILE_LOGIN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('fbloginimportprofile' ,'ace-switch ace-switch-5', null , $this->config->get('fbloginimportprofile') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_FACEBOOK_REIMPORT_AVATAR_LOGIN_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_FACEBOOK_REIMPORT_AVATAR_LOGIN' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('fbloginimportavatar' ,'ace-switch ace-switch-5', null , $this->config->get('fbloginimportavatar') ); ?> </td> </tr> </tbody> </table> </div> </div> </div>PK ! J �s�! �! tmpl/walls.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_WALLS'); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_REACTIONS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ENABLE_WALL_REACTIONS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablewalllikereaction' ,'ace-switch ace-switch-5', null , $this->config->get('enablewalllikereaction') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_ENABLE_COMMENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ENABLE_COMMENTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enablewallcomment' ,'ace-switch ace-switch-5', null , $this->config->get('enablewallcomment') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_EDIT_COMMENTS_ENABLE_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_EDIT_COMMENTS_ENABLE' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('wallediting' ,'ace-switch ace-switch-5', null , $this->config->get('wallediting') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LOCK_WALLS_TO_FRIENDS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LOCK_WALLS_TO_FRIENDS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('lockprofilewalls' ,'ace-switch ace-switch-5', null , $this->config->get('lockprofilewalls') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LOCK_VIDEO_WALLS_TO_FRIENDS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LOCK_VIDEO_WALLS_TO_FRIENDS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('lockvideoswalls' ,'ace-switch ace-switch-5', null , $this->config->get('lockvideoswalls') ); ?> </td> </tr> <tr> <td width="300" class="key"> <span class="hasTip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LOCK_PHOTO_WALLS_TO_FRIENDS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LOCK_PHOTO_WALLS_TO_FRIENDS' ); ?> </span> </td> <td valign="top"> <?php /*echo JHTML::_('select.booleanlist' , 'lockphotoswalls' , null , $this->config->get('lockphotoswalls') , Text::_('COM_COMMUNITY_YES_OPTION') , Text::_('COM_COMMUNITY_NO_OPTION') ); */?> <?php echo CHTMLInput::checkbox('lockphotoswalls' ,'ace-switch ace-switch-5', null , $this->config->get('lockphotoswalls') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LOCK_PAGE_WALLS_TO_MEMBERS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LOCK_PAGE_WALLS_TO_MEMBERS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('lockpagewalls' ,'ace-switch ace-switch-5', null , $this->config->get('lockpagewalls') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LOCK_GROUP_WALLS_TO_MEMBERS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LOCK_GROUP_WALLS_TO_MEMBERS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('lockgroupwalls' ,'ace-switch ace-switch-5', null , $this->config->get('lockgroupwalls') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_LOCK_EVENT_WALLS_TO_RECIPIENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_LOCK_EVENT_WALLS_TO_RECIPIENTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('lockeventwalls' ,'ace-switch ace-switch-5', null , $this->config->get('lockeventwalls') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_WALLS_AUTO_REFRESH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_WALLS_AUTO_REFRESH' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('enable_refresh' ,'ace-switch ace-switch-5', null , $this->config->get('enable_refresh') ); ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_WALLS_INTERVAL_TIME_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_WALLS_INTERVAL_TIME' ); ?> </span> </td> <td> <select name="stream_refresh_interval"> <?php $options = array(1000, 2000, 3000, 5000, 10000, 20000, 30000, 60000); $optionLabels = array('COM_COMMUNITY_1_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_2_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_3_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_5_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_10_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_20_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_30_SEC_AJAX_INTERVAL', 'COM_COMMUNITY_60_SEC_AJAX_INTERVAL'); $selectedValue = (int) $this->config->get('stream_refresh_interval'); $selectedValue = in_array($selectedValue, $options) ? $selectedValue : (int) $this->config->get('stream_refresh_interval' ); foreach ($options as $index => $value) { echo '<option value="' . $value . '"' . ($value == $selectedValue ? ' selected' : '') . '>' . Text::_($optionLabels[$index]) . '</option>'; } ?> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_WALLS_DEFAULT_COMMENTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_WALLS_DEFAULT_COMMENTS' ); ?> </span> </td> <td> <input type="text" name="stream_default_comments" value="<?php echo $this->config->get('stream_default_comments');?>" size="4" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_WALLS_COMMENTS_MORE_LENGTH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_WALLS_COMMENTS_MORE_LENGTH' ); ?> </span> </td> <td> <input type="text" name="prev_comment_load" value="<?php echo $this->config->get('prev_comment_load');?>" size="4" /> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_WALLS_COMMENTS_LENGTH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_WALLS_COMMENTS_LENGTH' ); ?> </span> </td> <td> <input type="text" name="stream_comment_length" value="<?php echo $this->config->get('stream_comment_length');?>" size="4" /> </td> </tr> </tbody> </table> </div> </div> </div>PK ! �ȴ� � tmpl/advance_search.phpnu �[��� <?php /** * @copyright (C) 2013 iJoomla, Inc. - All rights reserved. * @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html) * @author iJoomla.com <webmaster@ijoomla.com> * @url https://www.jomsocial.com/license-agreement * The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0 * More info at https://www.jomsocial.com/license-agreement */ use Joomla\CMS\Language\Text; // Disallow direct access to this file defined('_JEXEC') or die('Restricted access'); ?> <div class="widget-box"> <div class="widget-header widget-header-flat"> <h5><?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ADVANCESEARCH_TITLE' ); ?></h5> </div> <div class="widget-body"> <div class="widget-main"> <table> <tbody> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SEARCH_ALLOW_GUESTS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_SEARCH_ALLOW_GUESTS' ); ?> </span> </td> <td> <?php echo CHTMLInput::checkbox('guestsearch','ace-switch ace-switch-5', null , $this->config->get('guestsearch') ); ?> </td> </tr> <tr> <td width="250" class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SEARCH_ALLOW_RADIUS_SEARCH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_SEARCH_ALLOW_RADIUS_SEARCH' ); ?> </span> </td> <td> <?php // check if google maps integration properly setup if (CMapsHelper::mapSetup()) { echo CHTMLInput::checkbox('advanced_search_radius','ace-switch ace-switch-5', null , $this->config->get('advanced_search_radius') ); } else { echo CHTMLInput::checkbox('advanced_search_radius','ace-switch ace-switch-5', 'disabled' , $this->config->get('advanced_search_radius') ); echo '<div class="alert alert-notice">'; echo Text::sprintf('COM_COMMUNITY_CONFIGURATION_GOOGLEMAPS_DISABLED_JOOMLA_ERROR', CRoute::_('index.php?option=com_community&view=configuration&cfgSection=integrations')); echo '</div>'; } ?> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SEARCH_DEFAULT_RADIUS_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_SEARCH_DEFAULT_RADIUS' ); ?> </span> </td> <td> <select name="advanced_search_units"> <option<?php echo ($this->config->get('advanced_search_units') == 'metric') ? ' selected="true"' : ''; ?> value="metric"><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SEARCH_METRIC');?></option> <option<?php echo ($this->config->get('advanced_search_units') == 'imperial') ? ' selected="true"' : ''; ?> value="imperial"><?php echo Text::_('COM_COMMUNITY_CONFIGURATION_SEARCH_IMPERIAL');?></option> </select> </td> </tr> <tr> <td class="key"> <span class="js-tooltip" title="<?php echo Text::_('COM_COMMUNITY_CONFIGURATION_ADVANCESEARCH_EMAIL_SEARCH_TIPS'); ?>"> <?php echo Text::_( 'COM_COMMUNITY_CONFIGURATION_ADVANCESEARCH_EMAIL_SEARCH' ); ?> </span> </td> <td> <select name="privacy_search_email"> <?php $selectedUserPrivacy = ( $this->config->get('privacy_search_email') == '1' ) ? ' selected="true"' : ''; $selectedDisallow = ( $this->config->get('privacy_search_email') == '2' ) ? ' selected="true"' : ''; $selectedAllow = ( $this->config->get('privacy_search_email') == '0' ) ? ' selected="true"' : ''; ?> <option<?php echo $selectedAllow; ?> value="0"><?php echo Text::_('COM_COMMUNITY_ALLOWED_OPTION');?></option> <option<?php echo $selectedDisallow; ?> value="2"><?php echo Text::_('COM_COMMUNITY_DISALLOWED_OPTION');?></option> <option<?php echo $selectedUserPrivacy; ?> value="1"><?php echo Text::_('COM_COMMUNITY_RESPECT_PRIVACY_OPTION');?></option> </select> </td> </tr> </tbody> </table> </div> </div> </div> <fieldset class="adminform"> </fieldset>PK ! �9~��<