YesCT

YesCT duplicatemail.module

  1. <?php
  2. // $Id$
  3.  
  4. /**
  5.  * @file
  6.  * This is a helper module to add blocks and menu items and function
  7.  * to help deal with accounts that might have duplicate email addresses.
  8.  * It is based on the e

YesCT dupalicatemail.views_default.inc

  1. <?php
  2. // $Id$
  3.  
  4. /**
  5.  * @file
  6.  * Views export of duplicate mail user blocks.
  7.  */
  8.  
  9.  
  10. /**
  11.  * Implementation of hook_views_default_views().
  12.  */
  13. function duplicatemail_views_default_views() {
  14.  

YesCT duplicatemail.module

  1. <?php
  2. /**
  3.  * @file
  4.  * This is a helper module to add blocks and menu items and function
  5.  * to help deal with accounts that might have duplicate email addresses.
  6.  * It is based on the examples mod

YesCT duplicatemail.info

  1. ; $Id$
  2. name = Duplicate Mail
  3. description = "Views and Blocks to help deal with accounts with duplicate email addresses."
  4. dependencies[] = views
  5. core = 6.x

YesCT duplicatemail README.txt

  1. /* $Id$ */
  2.  
  3. -- SUMMARY --
  4.  
  5. The Duplicate Mail module has a block to display system wide duplicate email
  6. addresses in user accounts, and a view with a block display for use on
  7. individual user acc

YesCT duplicatemail CHANGELOG.txt

  1. // $Id$

Fix for Fix for yesct list accounts with duplicate email addresses

  1. <?php
  2. /**
  3.  * @file
  4.  * This is a helper module to add blocks and menu items and function
  5.  * to help deal with accounts that might have duplicate email addresses.
  6.  * It is based on the examples mod

Fix for yesct list accounts with duplicate email addresses

  1. $result=db_query('SELECT mail,count(*) AS n
  2. FROM {users}
  3. GROUP BY mail
  4. HAVING  n > 1');
  5. while ( $myobj = db_fetch_object ($result) ) {
  6.   echo "Accounts with duplicate email address: ";
  7. print "

YesCT uc sku

  1. Home
  2. Order settings
  3.  
  4.     * Overview
  5.     * Edit
  6.  
  7. Order settings: edit
  8.  
  9.     * Displaying 30 orders at a time on the admin overview
  10.     * Order logging is enabled.
  11.     * Addresses on order vi

yesct list accounts with duplicate email addresses

  1. $result=db_query('SELECT mail,count(*) AS n
  2. FROM {users}
  3. GROUP BY mail
  4. HAVING  n > 1');
  5. while ( $myobj = db_fetch_object ($result) ) {
  6.   echo "Accounts with duplicate email address: ";
  7. print "
Syndicate content