user

Fix for create user

  1. $account = new StdClass();
  2. $account->is_new = TRUE;
  3. $account->status = TRUE;
  4. $account->name = $node->title;
  5. $account->pass = $node->title;
  6. $account->mail = $node->field_email['und'][0]['value'];

create user

  1. $account = new StdClass();
  2.                         $account->is_new = TRUE;
  3.                         $account->status = TRUE;
  4.                         $account->name = $node->title;
  5.                         $account->pass = $node->title;
  6.                         $account->mail = $node->field_email['und'

Fix for location_user_category.module

  1. <?php
  2. /**
  3. ========User Location Category module=======
  4. * file: location_user_category.module
  5. *  Puts The User Location fieldset in specific profile category,
  6. *  so that is displayed on other tab
zet's picture

location_user_category.module

  1. <?php
  2. /**
  3. ========User Location Category module=======
  4. * file: location_user_category.module
  5. *  Puts The User Location fieldset in specific profile category,
  6. *  so that is displayed on other tab
zet's picture

location_user_category.install

  1. <?php
  2.  
  3. /**
  4.  * @file
  5.  * Installation / uninstallation routines for location_user_category.module.
  6.  */
  7.  
  8. /**
  9.  * Implentation of hook_uninstall().
  10.  */
  11. function location_user_category_uninstall()
zet's picture

location_user_category.module

  1. <?php
  2. /*file: location_user_category.module
  3. ========User Location Category module=======
  4. *- puts The User Location fieldset in specific profile category,
  5. *so that is displayed on other tab than t
zet's picture

User Location on specific Profile category/tab

  1. <?php
  2. /*file: location_user_category.module
  3. ========User Location Category module=======
  4. *- puts The User Location fieldset in specific profile category,
  5. *so that is displayed on other tab than t
zet's picture

location_user_category.info

  1. name = Location User Category
  2. description = Put user locations fieldset on specific profile category.
  3. ;dependencies[] = location
  4. dependencies[] = location_user
  5. package = Location
  6. core = 6.x
zet's picture

User Location on specific Profile category/tab

  1. <?php
  2. /*file: location_user_category.module
  3. ========User Location Category module=======
  4. *- puts The User Location fieldset in specific profile category,
  5. *so that is displayed on other tab than t

Fix for Why isn't my submit function being called?

  1. /**
  2.  * Menu callback.
Syndicate content