Skip to content

Commit

Permalink
1st Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ramblerswebs committed Jun 7, 2020
1 parent b74d653 commit 1e08138
Show file tree
Hide file tree
Showing 21 changed files with 1,299 additions and 149 deletions.
33 changes: 0 additions & 33 deletions administrator/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,39 +15,6 @@
</field>

<field name="history_limit" type="text" filter="integer" label="JGLOBAL_HISTORY_LIMIT_OPTIONS_LABEL" description="JGLOBAL_HISTORY_LIMIT_OPTIONS_DESC" default="5"/>

<field
name="integration_sef"
type="note"
label="JGLOBAL_SEF_TITLE"
/>

<field
name="sef_advanced"
type="radio"
class="btn-group btn-group-yesno btn-group-reversed"
default="0"
label="JGLOBAL_SEF_ADVANCED_LABEL"
description="JGLOBAL_SEF_ADVANCED_DESC"
filter="integer"
>
<option value="0">JGLOBAL_SEF_ADVANCED_LEGACY</option>
<option value="1">JGLOBAL_SEF_ADVANCED_MODERN</option>
</field>

<field
name="sef_ids"
type="radio"
class="btn-group btn-group-yesno"
default="0"
label="JGLOBAL_SEF_NOIDS_LABEL"
description="JGLOBAL_SEF_NOIDS_DESC"
showon="sef_advanced:1"
filter="integer"
>
<option value="1">JYES</option>
<option value="0">JNO</option>
</field>
</fieldset>
</config>
<!--
Expand Down
38 changes: 0 additions & 38 deletions administrator/languages/en-GB/en-GB.com_rw_accounts.ini
Original file line number Diff line number Diff line change
Expand Up @@ -63,44 +63,6 @@ COM_RW_ACCOUNTS_DOMAINS_LATITUDE = "Latitude"
COM_RW_ACCOUNTS_DOMAINS_LONGITUDE = "Longitude"
COM_RW_ACCOUNTS_DOMAINS_CREATED = "Created"
COM_RW_ACCOUNTS_DOMAINS_MODIFIED = "Modified"
COM_RW_ACCOUNTS_ORDERING_DESC = "Order Descending"
COM_RW_ACCOUNTS_STATE_DESC = "State Descending"
COM_RW_ACCOUNTS_CHECKED_OUT_DESC = "N/A Descending"
COM_RW_ACCOUNTS_CHECKED_OUT_TIME_DESC = "N/A Descending"
COM_RW_ACCOUNTS_CREATED_BY_DESC = "Created by Descending"
COM_RW_ACCOUNTS_MODIFIED_BY_DESC = "Modified by Descending"
COM_RW_ACCOUNTS_ID_DESC = "ID Descending"
COM_RW_ACCOUNTS_CODE_DESC = "Code Descending"
COM_RW_ACCOUNTS_AREANAME_DESC = "Area Descending"
COM_RW_ACCOUNTS_GROUPNAME_DESC = "Group Descending"
COM_RW_ACCOUNTS_DOMAIN_DESC = "Domain Descending"
COM_RW_ACCOUNTS_STATUS_DESC = "Status Descending"
COM_RW_ACCOUNTS_WEB_MASTER_DESC = "Webmaster Descending"
COM_RW_ACCOUNTS_USER_DESC = "User Descending"
COM_RW_ACCOUNTS_NOTES_DESC = "Notes Descending"
COM_RW_ACCOUNTS_LATITUDE_DESC = "Latitude Descending"
COM_RW_ACCOUNTS_LONGITUDE_DESC = "Longitude Descending"
COM_RW_ACCOUNTS_CREATED_DESC = "Created Descending"
COM_RW_ACCOUNTS_MODIFIED_DESC = "Modified Descending"
COM_RW_ACCOUNTS_ORDERING_ASC = "Order Ascending"
COM_RW_ACCOUNTS_STATE_ASC = "State Ascending"
COM_RW_ACCOUNTS_CHECKED_OUT_ASC = "N/A Ascending"
COM_RW_ACCOUNTS_CHECKED_OUT_TIME_ASC = "N/A Ascending"
COM_RW_ACCOUNTS_CREATED_BY_ASC = "Created by Ascending"
COM_RW_ACCOUNTS_MODIFIED_BY_ASC = "Modified by Ascending"
COM_RW_ACCOUNTS_ID_ASC = "ID Ascending"
COM_RW_ACCOUNTS_CODE_ASC = "Code Ascending"
COM_RW_ACCOUNTS_AREANAME_ASC = "Area Ascending"
COM_RW_ACCOUNTS_GROUPNAME_ASC = "Group Ascending"
COM_RW_ACCOUNTS_DOMAIN_ASC = "Domain Ascending"
COM_RW_ACCOUNTS_STATUS_ASC = "Status Ascending"
COM_RW_ACCOUNTS_WEB_MASTER_ASC = "Webmaster Ascending"
COM_RW_ACCOUNTS_USER_ASC = "User Ascending"
COM_RW_ACCOUNTS_NOTES_ASC = "Notes Ascending"
COM_RW_ACCOUNTS_LATITUDE_ASC = "Latitude Ascending"
COM_RW_ACCOUNTS_LONGITUDE_ASC = "Longitude Ascending"
COM_RW_ACCOUNTS_CREATED_ASC = "Created Ascending"
COM_RW_ACCOUNTS_MODIFIED_ASC = "Modified Ascending"
COM_RW_ACCOUNTS_TITLE_EXPORTS = "Exports"

COM_RW_ACCOUNTS_TITLE_DOMAIN = "Domain"
Expand Down
44 changes: 44 additions & 0 deletions administrator/languages/en-GB/en-GB.com_rw_accounts.sys.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,47 @@ COM_RW_ACCOUNTS_TITLE_LIST_VIEW_DOMAINS="Domains"
COM_RW_ACCOUNTS_TITLE_LIST_VIEW_DOMAINS_DESC="Show a list of Domains"

COM_RW_ACCOUNTS_TITLE_EXPORTS="Exports"

COM_RW_ACCOUNTS_SHOW_TABLES_SQL_STATEMENT="SHOW FULL TABLES WHERE tables_in_%s LIKE %s"

COM_RW_ACCOUNTS_SHOW_COLUMNS_TABLE_SQL_STATEMENT="SHOW FULL COLUMNS FROM %s WHERE Field LIKE %s"

COM_RW_ACCOUNTS_CREATE_TABLE_SQL_STATEMENT="CREATE TABLE IF NOT EXISTS %s (%s)"

COM_RW_ACCOUNTS_CREATE_TABLE_COLUMN_DECLARATION_SQL_STATEMENT="%s %s NOT NULL %s %s %s"

COM_RW_ACCOUNTS_CREATE_TABLE_INDEX_SQL_STATEMENT="INDEX %s (%s ASC)"

COM_RW_ACCOUNTS_ADD_COLUMN_SQL_STATEMENT="ALTER TABLE %s ADD %s"

COM_RW_ACCOUNTS_RENAME_COLUMN_SQL_STATEMENT="ALTER TABLE %s CHANGE %s %s %s"

COM_RW_ACCOUNTS_CHANGE_COLUMN_TYPE_SQL_STATEMENT="ALTER TABLE %s MODIFY %s"

COM_RW_ACCOUNTS_DROP_COLUMN_SQL_STATEMENT="ALTER TABLE %s DROP COLUMN %s"

COM_RW_ACCOUNTS_IS_NOT_COMPATIBLE_JOOMLA_VERSION="This component is not compatible with installed Joomla version"

COM_RW_ACCOUNTS_SIMPLEXML_LOAD_FILE_FUNCTION_DOES_NOT_EXISTS="This script needs 'simplexml_load_file' to update the component"

COM_RW_ACCOUNTS_CREATING_TABLE_ACTION_COMPLETED_SUCCESFULLY="Table `%s` has been succesfully created"

COM_RW_ACCOUNTS_CREATING_TABLE_ACTION_AN_ERROR_OCCURRED="There was an error creating the table `%s`. Error: %s"

COM_RW_ACCOUNTS_RENAMING_TABLE_ACTION_COMPLETED_SUCCESFULLY="Table `%s` was succesfully renamed to `%s`"

COM_RW_ACCOUNTS_RENAMING_TABLE_ACTION_AN_ERROR_OCCURRED="There was an error renaming the table `%s`. Error: %s"

COM_RW_ACCOUNTS_DROPPING_TABLE_ACTION_COMPLETED_SUCCESSFULLY="Table `%s` was succesfully deleted"

COM_RW_ACCOUNTS_ADDING_FIELD_ACTION_COMPLETED_SUCCESSFULLY="Field `%s` has been succesfully added"

COM_RW_ACCOUNTS_ADDING_FIELD_ACTION_AN_ERROR_OCCURRED="There was an error adding the field `%s`. Error: %s"

COM_RW_ACCOUNTS_MODIFYING_FIELD_ACTION_COMPLETED_SUCCESSFULLY="Field `%s` has been succesfully modified"

COM_RW_ACCOUNTS_MODIFYING_FIELD_ACTION_AN_ERROR_OCCURRED="There was an error modifying the field `%s`. Error: %s"

COM_RW_ACCOUNTS_DROPPING_FIELD_ACTION_COMPLETED_SUCCESSFULLY="Field `%s` has been succesfully deleted"

COM_RW_ACCOUNTS_DROPPING_FIELD_ACTION_AN_ERROR_OCCURRED="There was an error deleting the field `%s`. Error: %s"
4 changes: 1 addition & 3 deletions administrator/models/domains.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public function __construct($config = array())





/**
* Method to auto-populate the model state.
*
Expand Down Expand Up @@ -161,7 +159,7 @@ protected function getListQuery()
{
$query->where('a.state = ' . (int) $published);
}
elseif (empty($published))
elseif ($published === '')
{
$query->where('(a.state IN (0, 1))');
}
Expand Down
2 changes: 0 additions & 2 deletions administrator/models/exports.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ class Rw_accountsModelExports extends \Joomla\CMS\MVC\Model\ListModel





/**
* Method to auto-populate the model state.
*
Expand Down
3 changes: 1 addition & 2 deletions administrator/models/fields/foreignkey.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

use \Joomla\CMS\Factory;
use \Joomla\CMS\HTML\HTMLHelper;
use \Joomla\CMS\Language\Text;

jimport('joomla.form.formfield');

Expand Down Expand Up @@ -142,7 +141,7 @@ protected function getInput()
// Iterate through all the results
foreach ($results as $result)
{
$options[] = HTMLHelper::_('select.option', $result->{$this->key_field}, Text::_($result->{$this->value_field}));
$options[] = HTMLHelper::_('select.option', $result->{$this->key_field}, $result->{$this->value_field});
}

$value = $this->value;
Expand Down
12 changes: 5 additions & 7 deletions administrator/models/forms/filter_domains.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form>
<fields name="filter">
<field name="search" type="text" description="COM_RW_ACCOUNTS_SEARCH_FILTER_SUBMIT"
<field name="search" type="text" hint="COM_RW_ACCOUNTS_SEARCH_FILTER_SUBMIT"
label="COM_USERS_FILTER_SEARCH_DESC"
class="js-stools-search-string" />

Expand All @@ -22,20 +22,18 @@

<field name="fullordering"
type="list"
label="COM_RW_ACCOUNTS_LIST_FULL_ORDERING"
description="COM_RW_ACCOUNTS_LIST_FULL_ORDERING_DESC"
label="COM_CONTENT_LIST_FULL_ORDERING"
description="COM_CONTENT_LIST_FULL_ORDERING_DESC"
onchange="this.form.submit();"
default="a.id DESC"
>
<option value="">JGLOBAL_SORT_BY</option>
<option value="a.`ordering` ASC">COM_RW_ACCOUNTS_ORDERING_ASC</option><option value="a.`ordering` DESC">COM_RW_ACCOUNTS_ORDERING_DESC</option><option value="a.`state` ASC">COM_RW_ACCOUNTS_STATE_ASC</option><option value="a.`state` DESC">COM_RW_ACCOUNTS_STATE_DESC</option><option value="a.`code` ASC">COM_RW_ACCOUNTS_CODE_ASC</option><option value="a.`code` DESC">COM_RW_ACCOUNTS_CODE_DESC</option><option value="a.`areaname` ASC">COM_RW_ACCOUNTS_AREANAME_ASC</option><option value="a.`areaname` DESC">COM_RW_ACCOUNTS_AREANAME_DESC</option><option value="a.`groupname` ASC">COM_RW_ACCOUNTS_GROUPNAME_ASC</option><option value="a.`groupname` DESC">COM_RW_ACCOUNTS_GROUPNAME_DESC</option><option value="a.`domain` ASC">COM_RW_ACCOUNTS_DOMAIN_ASC</option><option value="a.`domain` DESC">COM_RW_ACCOUNTS_DOMAIN_DESC</option><option value="a.`status` ASC">COM_RW_ACCOUNTS_STATUS_ASC</option><option value="a.`status` DESC">COM_RW_ACCOUNTS_STATUS_DESC</option><option value="a.`web_master` ASC">COM_RW_ACCOUNTS_WEB_MASTER_ASC</option><option value="a.`web_master` DESC">COM_RW_ACCOUNTS_WEB_MASTER_DESC</option><option value="a.`created` ASC">COM_RW_ACCOUNTS_CREATED_ASC</option><option value="a.`created` DESC">COM_RW_ACCOUNTS_CREATED_DESC</option>
<option value="a.`ordering` ASC">Order Ascending</option><option value="a.`ordering` DESC">Order Descending</option><option value="a.`state` ASC">State Ascending</option><option value="a.`state` DESC">State Descending</option><option value="a.`code` ASC">Code Ascending</option><option value="a.`code` DESC">Code Descending</option><option value="a.`areaname` ASC">Area Ascending</option><option value="a.`areaname` DESC">Area Descending</option><option value="a.`groupname` ASC">Group Ascending</option><option value="a.`groupname` DESC">Group Descending</option><option value="a.`domain` ASC">Domain Ascending</option><option value="a.`domain` DESC">Domain Descending</option><option value="a.`status` ASC">Status Ascending</option><option value="a.`status` DESC">Status Descending</option><option value="a.`web_master` ASC">Webmaster Ascending</option><option value="a.`web_master` DESC">Webmaster Descending</option><option value="a.`created` ASC">Created Ascending</option><option value="a.`created` DESC">Created Descending</option>

</field>

<field name="limit"
<field name="limit"
type="limitbox"
label="COM_RW_ACCOUNTS_LIST_LIMIT"
description="COM_RW_ACCOUNTS_LIST_LIMIT_DESC"
class="input-mini"
default="25"
onchange="this.form.submit();"
Expand Down
4 changes: 2 additions & 2 deletions administrator/sql/install.mysql.utf8.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ CREATE TABLE IF NOT EXISTS `#__rw_accounts_domains` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,

`ordering` INT(11) NOT NULL ,
`state` TINYINT(1) NOT NULL DEFAULT 1,
`state` TINYINT(1) NOT NULL ,
`checked_out` INT(11) NOT NULL ,
`checked_out_time` DATETIME NOT NULL DEFAULT "0000-00-00 00:00:00",
`checked_out_time` DATETIME NOT NULL ,
`created_by` INT(11) NOT NULL ,
`modified_by` INT(11) NOT NULL ,
`code` VARCHAR(4) NOT NULL ,
Expand Down
13 changes: 12 additions & 1 deletion administrator/sql/update.mysql.utf8.sql
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
/* Only premium users are allowed to update a component */

INSERT INTO `#__content_types` (`type_title`, `type_alias`, `table`, `content_history_options`)
SELECT * FROM ( SELECT 'Domain','com_rw_accounts.domain','{"special":{"dbtable":"#__rw_accounts_domains","key":"id","type":"Domain","prefix":"Rw_accountsTable"}}', '{"formFile":"administrator\/components\/com_rw_accounts\/models\/forms\/domain.xml", "hideFields":["checked_out","checked_out_time","params","language"], "ignoreChanges":["modified_by", "modified", "checked_out", "checked_out_time"], "convertToInt":["publish_up", "publish_down"], "displayLookup":[{"sourceColumn":"catid","targetTable":"#__categories","targetColumn":"id","displayColumn":"title"},{"sourceColumn":"group_id","targetTable":"#__usergroups","targetColumn":"id","displayColumn":"title"},{"sourceColumn":"created_by","targetTable":"#__users","targetColumn":"id","displayColumn":"name"},{"sourceColumn":"access","targetTable":"#__viewlevels","targetColumn":"id","displayColumn":"title"},{"sourceColumn":"modified_by","targetTable":"#__users","targetColumn":"id","displayColumn":"name"}]}') AS tmp
WHERE NOT EXISTS (
SELECT type_alias FROM `#__content_types` WHERE (`type_alias` = 'com_rw_accounts.domain')
) LIMIT 1;

UPDATE `#__content_types` SET
`type_title` = 'Domain',
`table` = '{"special":{"dbtable":"#__rw_accounts_domains","key":"id","type":"Domain","prefix":"Rw_accountsTable"}}',
`content_history_options` = '{"formFile":"administrator\/components\/com_rw_accounts\/models\/forms\/domain.xml", "hideFields":["checked_out","checked_out_time","params","language"], "ignoreChanges":["modified_by", "modified", "checked_out", "checked_out_time"], "convertToInt":["publish_up", "publish_down"], "displayLookup":[{"sourceColumn":"catid","targetTable":"#__categories","targetColumn":"id","displayColumn":"title"},{"sourceColumn":"group_id","targetTable":"#__usergroups","targetColumn":"id","displayColumn":"title"},{"sourceColumn":"created_by","targetTable":"#__users","targetColumn":"id","displayColumn":"name"},{"sourceColumn":"access","targetTable":"#__viewlevels","targetColumn":"id","displayColumn":"title"},{"sourceColumn":"modified_by","targetTable":"#__users","targetColumn":"id","displayColumn":"name"}]}'
WHERE (`type_alias` = 'com_rw_accounts.domain');
24 changes: 24 additions & 0 deletions installer/structure.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<component>
<table action="add" table_name="#__rw_accounts_domains" storage_engine="" collation="utf8mb4_unicode_ci">
<field action="change" field_name="id" field_type="INT" field_length="11" is_autoincrement="1" description=""/>
<field field_name="ordering" field_type="INT" field_length="11" index="index" description=""/>
<field field_name="state" field_type="TINYINT" field_length="1" index="index" description=""/>
<field field_name="checked_out" field_type="INT" field_length="11" index="index" description=""/>
<field field_name="checked_out_time" field_type="DATETIME" description=""/>
<field field_name="created_by" field_type="INT" field_length="11" index="index" description=""/>
<field field_name="modified_by" field_type="INT" field_length="11" index="index" description=""/>
<field field_name="code" field_type="VARCHAR" field_length="4" description="Group or Area code"/>
<field action="change" old_name="area" new_name="areaname" field_name="areaname" field_type="VARCHAR" field_length="255" description="Name of the Area"/>
<field action="change" old_name="group" new_name="groupname" field_name="groupname" field_type="VARCHAR" field_length="255" description="Name of the Group"/>
<field field_name="domain" field_type="VARCHAR" field_length="255" description=""/>
<field field_name="status" field_type="VARCHAR" field_length="255" description="Status of the account/domain"/>
<field action="change" old_name="webmaster" new_name="web_master" field_name="web_master" field_type="VARCHAR" field_length="255" description="name of the web master"/>
<field action="change" field_name="user" field_type="INT" field_length="11" description="User account of Web Master"/>
<field action="change" field_name="notes" field_type="TEXT" description="Administrator notes"/>
<field field_name="latitude" field_type="DOUBLE" description="Latitude of group location"/>
<field field_name="longitude" field_type="DOUBLE" description="Longitude of group location"/>
<field field_name="created" field_type="DATETIME" description=""/>
<field field_name="modified" field_type="DATETIME" description=""/>
</table>
</component>
1 change: 1 addition & 0 deletions plugins/search/rw_accounts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!DOCTYPE html><title></title>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
PLG_SEARCH_RW_ACCOUNTS="Search - RW Accounts"
PLG_SEARCH_RW_ACCOUNTS_XML_DESCRIPTION="Maintain list of domains hosted by ramblers-webs.org.uk"
PLG_SEARCH_RW_ACCOUNTS_FIELD_SEARCHLIMIT_DESC="Number of search items to return"
PLG_SEARCH_RW_ACCOUNTS_FIELD_SEARCHLIMIT_LABEL="Search Limit"
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
PLG_SEARCH_RW_ACCOUNTS="Search - RW Accounts"
PLG_SEARCH_COM_RW_ACCOUNTS_XML_DESCRIPTION="Maintain list of domains hosted by ramblers-webs.org.uk"
PLG_SEARCH_COM_RW_ACCOUNTS_FIELD_SEARCHLIMIT_DESC="Number of search items to return"
PLG_SEARCH_COM_RW_ACCOUNTS_FIELD_SEARCHLIMIT_LABEL="Search Limit"
82 changes: 82 additions & 0 deletions plugins/search/rw_accounts/rw_accounts.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?php

/**
* @package Joomla.Plugin
* @subpackage Search.content
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;

require_once JPATH_SITE . '/components/com_rw_accounts/router.php';

use \Joomla\CMS\Factory;

/**
* Content search plugin.
*
* @package Joomla.Plugin
* @subpackage Search.content
* @since 1.6
*/
class PlgSearchRw_accounts extends \Joomla\CMS\Plugin\CMSPlugin
{
/**
* Determine areas searchable by this plugin.
*
* @return array An array of search areas.
*
* @since 1.6
*/
public function onContentSearchAreas()
{
static $areas = array(
'rw_accounts' => 'Rw_accounts'
);

return $areas;
}

/**
* Search content (articles).
* The SQL must return the following fields that are used in a common display
* routine: href, title, section, created, text, browsernav.
*
* @param string $text Target search string.
* @param string $phrase Matching option (possible values: exact|any|all). Default is "any".
* @param string $ordering Ordering option (possible values: newest|oldest|popular|alpha|category). Default is "newest".
* @param mixed $areas An array if the search it to be restricted to areas or null to search all areas.
*
* @return array Search results.
*
* @since 1.6
*/
public function onContentSearch($text, $phrase = '', $ordering = '', $areas = null)
{
$db = Factory::getDbo();

if (is_array($areas))
{
if (!array_intersect($areas, array_keys($this->onContentSearchAreas())))
{
return array();
}
}

$limit = $this->params->def('search_limit', 50);

$text = trim($text);

if ($text == '')
{
return array();
}

$rows = array();



return $rows;
}
}
32 changes: 32 additions & 0 deletions plugins/search/rw_accounts/rw_accounts.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="search">
<name>plg_search_rw_accounts</name>
<author>[email protected]</author>
<creationDate>2020-03-10</creationDate>
<copyright>2020 [email protected]</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>http://ramblers-webs.org.uk</authorUrl>
<version>CVS: 0.0.2</version>
<description>PLG_SEARCH_COM_RW_ACCOUNTS_XML_DESCRIPTION</description>
<files>
<filename plugin="rw_accounts">rw_accounts.php</filename>
<filename>index.html</filename>
</files>
<languages folder="languages">

<language tag="en-GB">en-GB/en-GB.plg_search_rw_accounts.ini</language>
<language tag="en-GB">en-GB/en-GB.plg_search_rw_accounts.sys.ini</language>
</languages>
<config>
<fields name="params">

<fieldset name="basic">
<field name="search_limit" type="text" default="50" size="5"
description="PLG_SEARCH_COM_RW_ACCOUNTS_FIELD_SEARCHLIMIT_DESC"
label="PLG_SEARCH_COM_RW_ACCOUNTS_FIELD_SEARCHLIMIT_LABEL" />
</fieldset>

</fields>
</config>
</extension>
Loading

0 comments on commit 1e08138

Please sign in to comment.