function npop_npop_css_animations in Node pop-up 7
Implements hook_npop_css_animations().
File
- ./
npop.module, line 488 - Create popup nodes with ajax and Drupal core functionality.
Code
function npop_npop_css_animations() {
return array(
'npop-animate-fade-left' => t('From left with fade side'),
'npop-animate-fade-right' => t('From right with fade side'),
'npop-animate-fade-top' => t('From top with fade side'),
'npop-animate-fade-bottom' => t('From bottom with fade side'),
'npop-animate-left' => t('From left side'),
'npop-animate-right' => t('From right side'),
'npop-animate-top' => t('From top side'),
'npop-animate-bottom' => t('From bottom side'),
);
}