Learn Rules (D6) with NodeOne
com vídeos interessantes.
http://dev.nodeone.se/node/684
este já é ara o drupal 7:
http://dev.nodeone.se/node/984
com vídeos interessantes.
http://dev.nodeone.se/node/684
este já é ara o drupal 7:
http://dev.nodeone.se/node/984
no meu caso foi apenas necessário criar a licença nas regras de checkout.
SELECT SUM(filesize) FROM files WHERE uid = 6
Sorry, there have been more than 5 failed login attempts for this account. It is temporarily blocked. Try again later or request a new password.
alterar a linha do meio:
<code>
<?php if ($block->subject): ?>
<h2><?php print $block->subject ?></h2>
<?php endif;?>
</code>
por:
<code>
<h2><a href="<?php print base_path(); ?>publications/gallery"><?php print $block->subject ?></a></h2>
</code>
ou promover um nó à página principal
ou alterar a home page
ou alterar a home page para uma view
ou ...
D6
<?php
if ( arg(0) == 'node' and is_numeric(arg(1)) and arg(2) == FALSE ) {
// Vocabulary term ID for which to display the block:
$displayTermID =1;
// Get all taxonomy terms for current node:
$currNodeTerms = taxonomy_node_get_terms(node_load(arg(1)));
// If there are no terms, fail-fast:
if (is_null($currNodeTerms) || 0 == count($currNodeTerms)) {
return FALSE;
}
// For each term of the current node, get all the ancestor terms:
foreach($currNodeTerms as $term) {