[ Index ] |
|
Code source de CMS made simple 1.0.5 |
1 <?php 2 $lang['sendtestmailconfirm'] = 'Egy tesztüzenetet fogunk küldeni a megadott címre. Ha a küldés sikeres, akkor visszatérünk erre az oldalra. Folytatod?'; 3 $lang['settingsconfirm'] = 'Írjuk ezeket az értékeket a CMSMailer beállításokhoz?'; 4 $lang['testsubject'] = 'CMSMailer Teszt Üzenet'; 5 $lang['testbody'] = 'Ezt az üzenetet azért kaptad, hogy ellenÅ‘rizhessük a CMSMailer modul beállításainek helyességét. 6 Ha megkaptad, akkor minden helyesen van beállítva és örülünk.'; 7 $lang['error_notestaddress'] = 'Hiba: Nincs megadva tesztcím'; 8 $lang['prompt_testaddress'] = 'Teszt Email Cím'; 9 $lang['sendtest'] = 'Teszt Üzenet Küldése'; 10 $lang['password'] = 'Jelszó'; 11 $lang['username'] = 'Felhasználó név'; 12 $lang['smtpauth'] = 'SMTP Hitelesítés'; 13 $lang['mailer'] = 'Üzenetküldési metódus'; 14 $lang['host'] = 'SMTP host neve<br/><i>(vagy IP címe)</i>'; 15 $lang['port'] = 'SMTP Port száma'; 16 $lang['from'] = 'Feladó címe'; 17 $lang['fromuser'] = 'Feladó felhasználói neve'; 18 $lang['sendmail'] = 'Sendmail útvonal'; 19 $lang['timeout'] = 'SMTP idÅ‘korlát'; 20 $lang['submit'] = 'Elküld'; 21 $lang['cancel'] = 'Mégsem'; 22 $lang['info_mailer'] = 'Használndó email metódus (sendmail, smtp, mail). Általában az smtp a legmegbízhatóbb.'; 23 $lang['info_host'] = 'SMTP host neve (csak az smtp metódus esetén érvényes)'; 24 $lang['info_port'] = 'SMTP port száma (átalában 25) (csak az smtp metódus esetén érvényes)'; 25 $lang['info_from'] = 'A feladó címe az összes kimenÅ‘ mail-en'; 26 $lang['info_fromuser'] = 'A feladó természetes neve az összes kimenÅ‘ mail-en'; 27 $lang['info_sendmail'] = 'A sendmail bináris teljes útvonala (csak a sendmail metódus esetén érvényes)'; 28 $lang['info_timeout'] = 'Azon másodpercek száma egy SMTP kommunikációban, amit még elfogadunk érvényesnek (csak az smtp metódus esetén érvényes)'; 29 $lang['info_smtpauth'] = 'Megköveteli az SMTP host a hitelesítést? (csak az smtp metódus esetén érvényes)'; 30 $lang['info_username'] = 'SMTP hitelesítéshez használt felhasználó név (csak az smtp metódus esetén érvényes, amikor a hitelesítés is ki van választva)'; 31 $lang['info_password'] = 'SMTP hitelesítéshez használt jelszó (csak az smtp metódus esetén érvényes, amikor a hitelesítés is ki van választva)'; 32 $lang['friendlyname'] = 'CMSMailer Modul'; 33 $lang['postinstall'] = 'A CMSMailer modul telepítése megtörtént'; 34 $lang['postuninstall'] = 'A CMSMailer modul eltávolítása megtörtént... sajnáljuk, hogy elmész.'; 35 $lang['uninstalled'] = 'A modul eltávolítása megtörtént.'; 36 $lang['installed'] = 'Module version %s installed.'; 37 $lang['accessdenied'] = 'A hozzáférés megtagadva. Kérem, ellenÅ‘rizze a jogosultságokat.'; 38 $lang['error'] = 'Hiba!'; 39 $lang['upgraded'] = 'Module upgraded to version %s.'; 40 $lang['title_mod_prefs'] = 'Module Preferences'; 41 $lang['title_mod_admin'] = 'Module Admin Panel'; 42 $lang['title_admin_panel'] = 'CMSMailer Module'; 43 $lang['moddescription'] = 'Ez egy egyszerű burkoló a PHPMailer köré. Azzal függvényrÅ‘l-függvényre megegyezÅ‘ API-val rendelkezik, plusz egy egyszerű interface-szel néhány default-hoz.'; 44 $lang['welcome_text'] = '<p>Isten hozott a CMSMailer admin szekciójában.'; 45 $lang['changelog'] = '<ul> 46 <li>Version 1.73.1. October, 2005. Initial Release.</li> 47 <li>Version 1.73.2. October, 2005. Minor bug fix with the admin panel. The dropdown was not representing the current value from the preferences database</li> 48 <li>Version 1.73.3. October, 2005. Minor bug fix with sending html email</li> 49 <li>Version 1.73.4. November, 2005. Form fields in preferences are larger, fixed a problem with the fromuser, and called reset within the constructor</li> 50 <li>Version 1.73.5. November, 2005. Added the form fields and functionality for SMTP authentication.</li> 51 <li>Version 1.73.6. December, 2005. Default mailer method is SMTP on install, and improved documentation, and now I clear all the attachments, and addresses, etc. on reset.</li> 52 <li>Version 1.73.7. January, 2006. Increased field lengths in most fields</li> 53 <li>Version 1.73.8. January, 2006. Changed the preferences panel to be a bit more descriptive.</li> 54 <li>Version 1.73.9. January, 2006. Added test email capability, and confirmation on each button (except cancel)</li> 55 </ul>'; 56 $lang['help'] = '<h3>What Does This Do?</h3> 57 <p>This module provides no end user functionality. It is designed to be integrated into other modules to provide email capabilities. Thats it, nothing more.</p> 58 <h3>How Do I Use It</h3> 59 <p>This module provides a simple wrapper around all of the methods and variables of phpmailer. It is designed for use by other module developers, below is an example, and a brief API reference. Please read the PHPMailer documentation included for more information.</p> 60 <h3>An Example</h3> 61 <pre> 62 $cmsmailer = $this->GetModuleInstance('CMSMailer'); 63 $cmsmailer->AddAddress('calguy1000@hotmail.com','calguy'); 64 $cmsmailer->SetBody('<h4>This is a test message</h4>'); 65 $cmsmailer->IsHTML(true); 66 $cmsmailer->SetSubject('Test message'); 67 $cmsmailer->Send(); 68 </pre> 69 <h3>API</h3> 70 <ul> 71 <li><p><b>void reset()</b></p> 72 <p>Reset the object back to the values specified in the admin panel</p> 73 </li> 74 <li><p><b>string GetAltBody()</b></p> 75 <p>Return the alternate body of the email</p> 76 </li> 77 <li><p><b>void SetAltBody( $string )</b></p> 78 <p>Set the alternate body of the email</p> 79 </li> 80 <li><p><b>string GetBody()</b></p> 81 <p>Return the primary body of the email</p> 82 </li> 83 <li><p><b>void SetBody( $string )</b></p> 84 <p>Set the primary body of the email</p> 85 </li> 86 <li><p><b>string GetCharSet()</b></p> 87 <p>Default: iso-8859-1</p> 88 <p>Return the mailer character set</p> 89 </li> 90 <li><p><b>void SetCharSet( $string )</b></p> 91 <p>Set the mailer character set</p> 92 </li> 93 <li><p><b>string GetConfirmReadingTo()</b></p> 94 <p>Return the address confirmed reading email flag</p> 95 </li> 96 <li><p><b>void SetConfirmReadingTo( $address )</b></p> 97 <p>Set or unset the confirm reading address</p> 98 </li> 99 <li><p><b>string GetContentType()</b></p> 100 <p>Default: text/plain</p> 101 <p>Return the content type</p> 102 </li> 103 <li><p><b>void SetContentType()</b></p> 104 <p>Set the content type</p> 105 </li> 106 <li><p><b>string GetEncoding()</b></p> 107 <p>Return the encoding</p> 108 </li> 109 <li><p><b>void SetEncoding( $encoding )</b></p> 110 <p>Set the encoding</p> 111 <p>Options are: 8bit, 7bit, binary, base64, quoted-printable</p> 112 </li> 113 <li><p><b>string GetErrorInfo()</b></p> 114 <p>Return any error information</p> 115 </li> 116 <li><p><b>string GetFrom()</b></p> 117 <p>Return the current originating address</p> 118 </li> 119 <li><p><b>void SetFrom( $address )</b></p> 120 <p>Set the originating address</p> 121 </li> 122 <li><p><b>string GetFromName()</b></p> 123 <p>Return the current originating name</p> 124 </li> 125 <li><p><b>SetFromName( $name )</b></p> 126 <p>Set the originating name</p> 127 </li> 128 <li><p><b>string GetHelo()</b></p> 129 <p>Return the HELO string</p> 130 </li> 131 <li><p><b>SetHelo( $string )</b></p> 132 <p>Set the HELO string</p> 133 <p>Default value: $hostname</p> 134 </li> 135 <li><p><b>string GetHost()</b></p> 136 <p>Return the SMTPs host separated by semicolon</p> 137 </li> 138 <li><p><b>void SetHost( $string )</b></p> 139 <p>Set the hosts</p> 140 </li> 141 <li><p><b>string GetHostName()</b></p> 142 <p>Return the hostname used for SMTP Helo</p> 143 </li> 144 <li><p><b>void SetHostName( $hostname )</b></p> 145 <p>Set the hostname used for SMTP Helo</p> 146 </li> 147 <li><p><b>string GetMailer()</b></p> 148 <p>Return the mailer</p> 149 </li> 150 <li><p><b>void SetMailer( $mailer )</b></p> 151 <p>Set the mailer, either sendmail,mail, or smtp</p> 152 </li> 153 <li><p><b>string GetPassword()</b></p> 154 <p>Return the password for smtp auth</p> 155 </li> 156 <li><p><b>void SetPassword( $string )</b></p> 157 <p>Set the password for smtp auth</p> 158 </li> 159 <li><p><b>int GetPort()</b></p> 160 <p>Return the port number for smtp connections</p> 161 </li> 162 <li><p><b>void SetPort( $int )</b></p> 163 <p>Set the port for smtp connections</p> 164 </li> 165 <li><p><b>int GetPriority()</b></p> 166 <p>Return the message priority</p> 167 </li> 168 <li><p><b>void SetPriority( int )</b></p> 169 <p>Set the message priority</p> 170 <p>Values are 1=High, 3 = Normal, 5 = Low</p> 171 </li> 172 <li><p><b>string GetSender()</b></p> 173 <p>Return the sender email (return path) string</p> 174 </li> 175 <li><p><b>void SetSender( $address )</b></p> 176 <p>Set the sender string</p> 177 </li> 178 <li><p><b>string GetSendmail()</b></p> 179 <p>Return the sendmail path</p> 180 </li> 181 <li><p><b>void SetSendmail( $path )</b></p> 182 <p>Set the sendmail path</p> 183 </li> 184 <li><p><b>bool GetSMTPAuth()</b></p> 185 <p>Return the current value of the smtp auth flag</p> 186 </li> 187 <li><p><b>SetSMTPAuth( $bool )</b></p> 188 <p>Set the smtp auth flag</p> 189 </li> 190 <li><p><b>bool GetSMTPDebug()</b></p> 191 <p>Return the value of the SMTP debug flag</p> 192 </li> 193 <li><p><b>void SetSMTPDebug( $bool )</b></p> 194 <p>Set the SMTP debug flag</p> 195 </li> 196 <li><p><b>bool GetSMTPKeepAlive()</b></p> 197 <p>Return the value of the SMTP keep alive flag</p> 198 </li> 199 <li><p><b>SetSMTPKeepAlive( $bool )</b></p> 200 <p>Set the SMTP keep alive flag</p> 201 </li> 202 <li><p><b>string GetSubject()</b></p> 203 <p>Return the current subject string</p> 204 </li> 205 <li><p><b>void SetSubject( $string )</b></p> 206 <p>Set the subject string</p> 207 </li> 208 <li><p><b>int GetTimeout()</b></p> 209 <p>Return the timeout value</p> 210 </li> 211 <li><p><b>void SetTimeout( $seconds )</b></p> 212 <p>Set the timeout value</p> 213 </li> 214 <li><p><b>string GetUsername()</b></p> 215 <p>Return the smtp auth username</p> 216 </li> 217 <li><p><b>void SetUsername( $string )</b></p> 218 <p>Set the smtp auth username</p> 219 </li> 220 <li><p><b>int GetWordWrap()</b></p> 221 <p>Return the wordwrap value</p> 222 </li> 223 <li><p><b>void SetWordWrap( $int )</b></p> 224 <p>Return the wordwrap value</p> 225 </li> 226 <li><p><b>AddAddress( $address, $name = '' )</b></p> 227 <p>Add a destination address</p> 228 </li> 229 <li><p><b>AddAttachment( $path, $name = '', $encoding = 'base64', $type = 'application/octent-stream' )</b></p> 230 <p>Add a file attachment</p> 231 </li> 232 <li><p><b>AddBCC( $address, $name = '' )</b></p> 233 <p>Add a BCC'd destination address</p> 234 </li> 235 <li><p><b>AddCC( $address, $name = '' )</b></p> 236 <p>Add a CC'd destination address</p> 237 </li> 238 <li><p><b>AddCustomHeader( $txt )</b></p> 239 <p>Add a custom header to the email</p> 240 </li> 241 <li><p><b>AddEmbeddedImage( $path, $cid, $name = '', $encoding = 'base64', $type = 'application/octent-stream' )</b></p> 242 <p>Add an embedded image</p> 243 </li> 244 <li><p><b>AddReplyTo( $address, $name = '' )</b></p> 245 <p>Add a reply to address</p> 246 </li> 247 <li><p><b>AddStringAttachment( $string, $filename, $encoding = 'base64', $type = 'application/octent-stream' )</b></p> 248 <p>Add a file attachment</p> 249 </li> 250 <li><p><b>ClearAddresses()</b></p> 251 <p>Clear all addresses</p> 252 </li> 253 <li><p><b>ClearAllRecipients()</b></p> 254 <p>Clear all recipients</p> 255 </li> 256 <li><p><b>ClearAttachments()</b></p> 257 <p>Clear all attachments</p> 258 </li> 259 <li><p><b>ClearBCCs()</b></p> 260 <p>Clear all BCC addresses</p> 261 </li> 262 <li><p><b>ClearCCs()</b></p> 263 <p>Clear all CC addresses</p> 264 </li> 265 <li><p><b>ClearCustomHeaders()</b></p> 266 <p>Clear all custom headers</p> 267 </li> 268 <li><p><b>ClearReplyto()</b></p> 269 <p>Clear reply to address</p> 270 </li> 271 <li><p><b>IsError()</b></p> 272 <p>Check for an error condition</p> 273 </li> 274 <li><p><b>bool IsHTML( $bool )</b></p> 275 <p>Set the html flag</p> 276 <p><i>Note</i> possibly this should be a get and set method</p> 277 </li> 278 <li><p><b>bool IsMail()</b></p> 279 <p>Check wether we are using mail</p> 280 </li> 281 <li><p><b>bool IsQmail()</b></p> 282 <p>Check wether we are using qmail</p> 283 </li> 284 <li><p><b>IsSendmail()</b></p> 285 <p>Check wether we are using sendmail</p> 286 </li> 287 <li><p><b>IsSMTP()</b></p> 288 <p>Check wether we are using smtp</p> 289 </li> 290 <li><p><b>Send()</b></p> 291 <p>Send the currently prepared email</p> 292 </li> 293 <li><p><b>SetLanguage( $lang_type, $lang_path = '' )</b></p> 294 <p>Set the current language and <em>(optional)</em> language path</p> 295 </li> 296 <li><p><b>SmtpClose()</b></p> 297 <p>Close the smtp connection</p> 298 </li> 299 </ul> 300 <h3>Support</h3> 301 <p>This module does not include commercial support. However, there are a number of resources available to help you with it:</p> 302 <ul> 303 <li>For the latest version of this module, FAQs, or to file a Bug Report or buy commercial support, please visit calguys homepage at <a href='http://techcom.dyndns.org'>techcom.dyndns.org</a>.</li> 304 <li>Additional discussion of this module may also be found in the <a href='http://forum.cmsmadesimple.org'>CMS Made Simple Forums</a>.</li> 305 <li>The author, calguy1000, can often be found in the <a href='irc://irc.freenode.net/#cms'>CMS IRC Channel</a>.</li> 306 <li>Lastly, you may have some success emailing the author directly.</li> 307 </ul> 308 <p>As per the GPL, this software is provided as-is. Please read the text 309 of the license for the full disclaimer.</p> 310 311 <h3>Copyright and License</h3> 312 <p>Copyright © 2005, Robert Campbell <a href='mailto:calguy1000@hotmail.com'><calguy1000@hotmail.com></a>. All Rights Are Reserved.</p> 313 <p>This module has been released under the <a href='http://www.gnu.org/licenses/licenses.html#GPL'>GNU Public License</a>. You must agree to this license before using the module.</p> 314 '; 315 $lang['utma'] = '156861353.1172690191.1153773477.1153773477.1154157608.2'; 316 $lang['utmz'] = '156861353.1153773477.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)'; 317 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Tue Apr 3 18:50:37 2007 | par Balluche grâce à PHPXref 0.7 |