This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.circle-text { | |
width:50%; | |
} | |
.circle-text:after { | |
content: ""; | |
display: block; | |
width: 100%; | |
height:0; | |
padding-bottom: 100%; | |
background: #4679BD; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Implementation of hook_block_info(). | |
*/ | |
function the_aim_picstory_block_info() { | |
$blocks = array(); | |
// OVERVIEW MOVIES | |
$blocks['movie-overview'] = array( | |
'info' => t('CB - Movie overview'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_taxonomy_menu_block_tree_alter | |
*/ | |
function custom_taxonomy_menu_block_tree_alter(&$tree, $config) { | |
switch($config) { | |
// add icon image to cache of TMB | |
case '2': | |
foreach($tree as $tid => $term) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = the AIM custom | |
package = the AIM | |
core = 7.x |