Confirmations
Offers temporary URLs to perform a given action, used for double opt-in, email-verfication, and such. More...
Classes |
|
class | ConfirmationHandlerBase |
Base class for handling confirmation
requests. More... |
|
class | Confirmations |
Confirmations facade class.
More... |
|
class | ConfirmationsController |
Confirmation controller. More... |
|
class | CreateConfirmationsCommand |
Create a confirmation. More... |
|
class | DAOConfirmations |
Table Definition for confirmations. More... |
|
interface | IConfirmationHandler |
Interface for all confirmation handlers to
implement. More... |
|
Functions |
|
confirmations_load_translations ($languages) | |
Confirmation translations. |
Detailed Description
Offers temporary URLs to perform a given action, used for double opt-in, email-verfication, and such.
Function Documentation
confirmations_load_translations | ( | $ | languages | ) |
Confirmation translations.
Definition at line 8 of file confirmations.translations.php.
00008 { 00009 return array( 00010 'No confirmations found for your request' => array( 00011 'de' => 'Es wurde keine passenden Einträge für Ihren Code gefunden.' 00012 ), 00013 'Your request has already expired and could not be confirmed' => array( 00014 'de' => 'Ihre Anfrage kommt leider zu spät, die Zeit ist bereits abgelaufen.' 00015 ), 00016 'Your request was confirmed' => array( 00017 'de' => 'Ihre Anfrage wurde bestätigt' 00018 ), 00019 'Confirmation' => array( 00020 'de' => 'Bestätigung' 00021 ) 00022 ); 00023 }