You are here

function ajax_register_get_register_link in Ajax Login/Register 6

1 call to ajax_register_get_register_link()
ajax_get_login_block_content in ./ajax_register.module

File

./ajax_register.module, line 104

Code

function ajax_register_get_register_link($attributes = array(), $query = array()) {
  $attributes['class'] = $attributes['class'] . ' thickbox';
  $register_uri = l(t('Register'), 'ajax_register/register', array(
    'attributes' => $attributes,
    'query' => $query,
  ));
  return $register_uri;
}