Mailinglist
 All Data Structures Files Functions Variables Pages
MailinglistGenericList Class Reference

Generic List Personality Plugin. More...

Inheritance diagram for MailinglistGenericList:
Inheritance graph
[legend]
Collaboration diagram for MailinglistGenericList:
Collaboration graph
[legend]

Public Member Functions

ctools_export_ui
 edit_form (&$form, &$form_state)
 Implements ctools_export_ui::edit_form(). More...
 
MailinglistListInterface
 checkMessage (MailinglistMessageInterface $msg)
 checkMessage() More...
 
- Public Member Functions inherited from MailinglistList
 getWebPage ($url, $post="")
 getWebPage More...
 
 checkMessage (MailinglistMessageInterface $msg)
 Called on each message read from a mailbox to see if we want to process it. More...
 
 genericListMatch (MailinglistMessageInterface $msg)
 generic_list_match() More...
 
 processMessage (MailinglistMessageInterface $message)
 message_process() More...
 
 schema (&$schema, $type)
 schema() More...
 
 getMemberInfo ($email)
 getMemberInfo() More...
 
 getMemberPage ($page)
 getMemberPage() More...
 
 edit_form (&$form, &$form_state)
 Implements ctools_export_ui::edit_form(), cross linked via mailinglist_export_ui.class.php. More...
 
 edit_form_validate (&$form, &$form_state)
 edit_form_validate() More...
 
- Public Member Functions inherited from MailinglistExportable
 get_setting ($name, $def=NULL)
 get_settings() More...
 
 created ()
 created() More...
 
 edited ($old)
 edited() More...
 
 changedType (MailinglistPolymorpicExportableInterface $old)
 changedType() More...
 
 delete ()
 delete() More...
 
 baseName ()
 baseName() More...
 
 edit_form (&$form, &$form_state)
 Implements ctools_export_ui::edit_form() called via mailinglist_export_ui Build an edit form for our object. More...
 
 edit_form_validate (&$form, &$form_state)
 Implements ctools_export_ui::edit_form_validate(). More...
 
 edit_form_submit (&$form, &$form_state)
 Implements ctools_export_ui::edit_form_submit(). More...
 
 log ($str, $level=self::LOG_NOTICE, $parms=array())
 log() More...
 
 log_screen ($str, $parms=array(), $level=self::LOG_NOTICE)
 log_screen() More...
 
 log_db ($str, $parms=array(), $level=self::LOG_ERROR)
 log_db(). More...
 
 log_file ($str, $parms=array(), $level=self::LOG_INFO)
 log_file(). More...
 
MailinglistPolymorphicExportableInterface
MailinglistListInterface

Additional Inherited Members

- Data Fields inherited from MailinglistList
 $operations
 
 $parameters
 
- Data Fields inherited from MailinglistExportable
 $object_type
 The type of object we are. More...
 
 $settings
 Generic Array to hold misc settings so all can use same schema. More...
 
 $export_type
 Needed by CTools. More...
 
const LOG_OFF = 0
 
const LOG_SCREEN = 1
 
const LOG_DB = 2
 
const LOG_DB_SCREEN = 3
 
const LOG_FILE = 4
 
const LOG_FILE_SCREEN = 5
 
const LOG_DEBUG = WATCHDOG_DEBUG
 
const LOG_INFO = WATCHDOG_INFO
 
const LOG_NOTICE = WATCHDOG_NOTICE
 
const LOG_WARNING = WATCHDOG_WARNING
 
const LOG_ERROR = WATCHDOG_ERROR
 
const LOG_CRITICAL = WATCHDOG_CRITICAL
 
const LOG_ALERT = WATCHDOG_ALERT
 
const LOG_EMERGENCY = WATCHDOG_EMERGENCY
 
 $logging_screen = self::LOG_DEBUG
 
 $logging_db = self::LOG_INFO
 
 $logging_file = self::LOG_DEBUG
 

Detailed Description

Generic List Personality Plugin.

Definition at line 16 of file MailinglistGenericList.class.php.

Member Function Documentation

checkMessage ( MailinglistMessageInterface  $msg)

checkMessage()

Overrides/Implements MailinglistList::processMessage().

Implements MailinglistListInterface.

Definition at line 39 of file MailinglistGenericList.class.php.

References MailinglistList\processMessage().

39  {
40  if ($this->generic_list_match($msg)) {
41  $this->processMessage($msg);
42  return TRUE;
43  }
44  return FALSE;
45  }
processMessage(MailinglistMessageInterface $message)
message_process()

Here is the call graph for this function:

edit_form ( $form,
$form_state 
)

Implements ctools_export_ui::edit_form().

Definition at line 24 of file MailinglistGenericList.class.php.

24  {
25  parent::edit_form($form, $form_state);
26  }

The documentation for this class was generated from the following file: