- Uyumlu XF Sürümleri
- 2.2.X
- 2.3.X +
- PHP Sürümü
- PHP 7.2+
[vbresults.com] Searchable Custom Pages, XenForo tabanlı forumlarda oluşturduğunuz özel sayfaları forum içi arama sistemi için tam uyumlu hale getiren eklentidir. Bu eklenti sayesinde standart arama sonuçlarında yer almayan özel içerikleriniz, artık kullanıcılar tarafından kolayca bulunabilir.
Description:
[vbresults.com] Searchable Custom Pages is a plugin that makes custom pages you create on XenForo-based forums fully compatible with the forum's search system. Thanks to this plugin, your unique content, which doesn't appear in standard search results, can now be easily found by users.
Custom table schema (Note: you can set any schema you want using the settings):
Source table columns:
Inflection map (if you have more than one page type, you can define them here):
Description:
[vbresults.com] Searchable Custom Pages is a plugin that makes custom pages you create on XenForo-based forums fully compatible with the forum's search system. Thanks to this plugin, your unique content, which doesn't appear in standard search results, can now be easily found by users.
Custom table schema (Note: you can set any schema you want using the settings):
SQL:
CREATE TABLE `pages` (
`page_id` smallint(4) NOT NULL,
`page_type` varchar(25) NOT NULL,
`target` varchar(200) NOT NULL,
`title` varchar(200) DEFAULT NULL,
`description` varchar(300) DEFAULT NULL,
`active` tinyint(1) NOT NULL,
`created` timestamp NOT NULL DEFAULT current_timestamp(),
`updated` datetime DEFAULT NULL ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `pages`
--
INSERT INTO `pages` (`page_id`, `page_type`, `target`, `title`, `description`, `active`, `created`, `updated`) VALUES
(1, 'products', '/products/1', 'Product 1', 'Text for Product 1 search result.', 1, '2025-06-05 00:00:00', '2025-06-05 07:19:21');
Source table columns:
SQL:
[category]
key=page_type
[CODE][category]
key=page_type
[page]
page_id=page_id
title=title
description=description
pathname=target
active=active
page_date=created
last_update=updated
Inflection map (if you have more than one page type, you can define them here):
Kod:
[plural]
products=Products
[singular]
products=Product



