| 1 |
; $Id: README.txt,v 1.1.2.1 2008/09/28 21:41:31 febbraro Exp $
|
| 2 |
|
| 3 |
More Like This
|
| 4 |
--------------
|
| 5 |
More Like This provides a mechanism (and soon a framework) for providing related content. It currently only
|
| 6 |
supports and internal taxonomy search, but the plan is to open it up with a framework for
|
| 7 |
plugging in morelikethis providers. This data is provided either as a block or as node
|
| 8 |
properties to be manipulated during theming.
|
| 9 |
|
| 10 |
Taxonomy Lookup
|
| 11 |
---------------
|
| 12 |
This initial release includes a taxonomy based lookup mechanism for More Like This content. It works by first
|
| 13 |
specifying your "Thumbprint" for a particular node on the node edit form. By thumbprint we mean you can specify
|
| 14 |
the terms/words that you, as an editor, feel uniquely identifies this content item. You can either select existing
|
| 15 |
taxonomy terms associated with this specific node, or enter free hand terms. When performing the lookup we will
|
| 16 |
determine what other nodes in the site match the provided More Like This terms and those with the highest
|
| 17 |
relevance/hit count will appear first in the list.
|
| 18 |
|
| 19 |
Configuration
|
| 20 |
--------------
|
| 21 |
From Site Configuration -> More Like This settings you can configure the various settings that control
|
| 22 |
the functionality. More Like This is configured on a per Content Type basis and allows you to configure
|
| 23 |
the following features:
|
| 24 |
|
| 25 |
* Enabled - Is More Like This functionality provided for this specific Content Type
|
| 26 |
* Target Types - Which other site Content Type will be searched as related content
|
| 27 |
* Count - The maximum number of entries to return in the More Like This query/listing
|
| 28 |
* Threshold - This is a filter on More Like This results based on a percentage of matching Terms
|
| 29 |
|
| 30 |
To sum up the configuration, if enabled, More Like This for a specfic content type will search for existing
|
| 31 |
content of the specified target types ordered by relevance that meet a certain threshold of matched terms and
|
| 32 |
will return no more than the specified count. Sounds easy right? :)
|
| 33 |
|
| 34 |
Theme
|
| 35 |
--------------
|
| 36 |
There are a few theming options for More Like This results.
|
| 37 |
|
| 38 |
theme_morelikethis_block($items)
|
| 39 |
This is the general theme function for the blocks. It takes a list of the More Like This classes (detailed
|
| 40 |
below in the node properties). It iterates each item and calls the theme function for each individual item.
|
| 41 |
|
| 42 |
theme_morelikethis_item($item)
|
| 43 |
This formats an individual related item for display. It currently creates a link to the related node and the
|
| 44 |
link text is the node title with the relevance percentage. Example: Node Title (80%)
|
| 45 |
|
| 46 |
|
| 47 |
Node Properties
|
| 48 |
---------------
|
| 49 |
The node properties are specified as such:
|
| 50 |
|
| 51 |
$node->morelikethis = array(
|
| 52 |
[0] => array(
|
| 53 |
['#view'] => '<a href="some/node/path">Node Title (80%)</a>',
|
| 54 |
['#item'] => object(stdClass)#18 (4) {
|
| 55 |
["nid"]=> "183"
|
| 56 |
["title"]=> "Node Title"
|
| 57 |
["hits"]=> "4"
|
| 58 |
["relevance"]=> "0.8"
|
| 59 |
}
|
| 60 |
)
|
| 61 |
)
|
| 62 |
|
| 63 |
You can theme them within an existing node.tpl.php with:
|
| 64 |
|
| 65 |
<?php if ($node->morelikethis): ?>
|
| 66 |
<div class="morelikethis">
|
| 67 |
<h3>More Like This</h3>
|
| 68 |
<?php
|
| 69 |
$items = array();
|
| 70 |
foreach ($node->morelikethis as $item) {
|
| 71 |
$items[] = $item['#view'];
|
| 72 |
}
|
| 73 |
print theme('item_list', $items);
|
| 74 |
?>
|
| 75 |
</div>
|
| 76 |
<?php endif;?>
|
| 77 |
|
| 78 |
Future Providers
|
| 79 |
----------------
|
| 80 |
This initial release includes one type of search based on Taxonomy. Over the course of a few release we will
|
| 81 |
develop a pluggable architecture for search providers to integrate other mechanisms for finding related content.
|
| 82 |
|
| 83 |
These might include:
|
| 84 |
- Local Calais recommendataions
|
| 85 |
- Apache Solr instances
|
| 86 |
- Internal Drupal content search
|
| 87 |
- Yahoo BOSS Service
|
| 88 |
- Google
|