Difference between revisions of "List-Cat.php"

From Organic Design wiki
m
({{legacy}})
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
<?
+
{{legacy}}
# Append article content with a list of article-names from category specified in properties
+
<php><?
 +
# The List-Cat.php [[[[transform]]]] appends the content of the category
 +
# specified in the "List-Cat" [[[[properties]]]] element to the current
 +
# article as a bullet list of links.
 +
# See [[[[List-Cat Example]]]]
 +
#
 
global $wgContLang;
 
global $wgContLang;
 
$db =& wfGetDB( DB_MASTER );
 
$db =& wfGetDB( DB_MASTER );
Line 8: Line 13:
 
xwGetProperty( $properties, 'list-cat', $cats );
 
xwGetProperty( $properties, 'list-cat', $cats );
 
$cats = str_replace( ' ', '_', $cats );
 
$cats = str_replace( ' ', '_', $cats );
 +
xwMessage("cats:$cats");
 +
xwGetProperty( $properties, 'category', $data );
 +
xwMessage("data:$data");
 
$article = trim( $article )."\n";
 
$article = trim( $article )."\n";
 
foreach ( split( ',', $cats ) as $cat ) {
 
foreach ( split( ',', $cats ) as $cat ) {
Line 24: Line 32:
 
}
 
}
 
}
 
}
?>
+
?></php>

Latest revision as of 03:21, 28 May 2007

Legacy.svg Legacy: This article describes a concept that has been superseded in the course of ongoing development on the Organic Design wiki. Please do not develop this any further or base work on this concept, now this page is for historic record only.

<php><?

  1. The List-Cat.php [[transform]] appends the content of the category
  2. specified in the "List-Cat" [[properties]] element to the current
  3. article as a bullet list of links.
  4. See [[List-Cat Example]]

global $wgContLang; $db =& wfGetDB( DB_MASTER ); $subdb =& wfGetDB( DB_SLAVE ); $cl = $db->tableName( 'categorylinks' ); $cur = $db->tableName( 'cur' ); xwGetProperty( $properties, 'list-cat', $cats ); $cats = str_replace( ' ', '_', $cats ); xwMessage("cats:$cats"); xwGetProperty( $properties, 'category', $data ); xwMessage("data:$data"); $article = trim( $article )."\n"; foreach ( split( ',', $cats ) as $cat ) { $result = $db->query( "SELECT cl_from,cl_sortkey FROM $cl WHERE cl_to = '$cat' ORDER BY cl_sortkey" ); while ( $row = mysql_fetch_assoc( $result ) ) { $id = $row['cl_from']; $subresult = $subdb->query( "SELECT cur_title,cur_namespace FROM $cur WHERE cur_id=$id" ); if ( $subrow = mysql_fetch_assoc( $subresult ) ) { $t = str_replace( '_', ' ', $subrow['cur_title'] ); if ( $ns = $wgContLang->getNsText( $subrow['cur_namespace'] ) ) $t = "$ns:$t"; $a = str_replace( '_', ' ', $row['cl_sortkey'] ); $a = ( $t != $a ) ? "|$a" : ; $t = preg_replace( '/^(?=Category:)/', ':', $t ); $article .= "*$t$a\n"; } } } ?></php>