├── mail ├── index.php~ ├── PHPMailer │ ├── VERSION │ ├── examples │ │ ├── contents.html │ │ ├── styles │ │ │ ├── wrapping.png │ │ │ ├── shThemeAppleScript.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeRDark.css │ │ │ ├── shThemeMidnight.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeVisualStudio.css │ │ │ └── shThemeFadeToGrey.css │ │ ├── images │ │ │ ├── phpmailer.png │ │ │ └── phpmailer_mini.png │ │ ├── contentsutf8.html │ │ ├── mail.phps │ │ ├── sendmail.phps │ │ ├── DKIM.phps │ │ ├── exceptions.phps │ │ ├── send_multiple_file_upload.phps │ │ ├── send_file_upload.phps │ │ ├── smtp_no_auth.phps │ │ ├── smtp.phps │ │ ├── smtp_check.phps │ │ ├── ssl_options.phps │ │ ├── pop_before_smtp.phps │ │ └── gmail.phps │ ├── composer.json │ ├── language │ │ ├── phpmailer.lang-zh_cn.php │ │ ├── phpmailer.lang-zh.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-am.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-pt.php │ │ └── phpmailer.lang-fr.php │ ├── extras │ │ └── README.md │ └── PHPMailerAutoload.php ├── index.php ├── composer.json~ └── email.php~ ├── index.php ├── ajax-login ├── assets │ └── auth.js ├── ajax-loader.gif ├── check.php ├── db.php ├── home.php ├── index.php ├── login.php ├── logout.php ├── login_process.php └── signup_process.php ├── .idea ├── copyright │ └── profiles_settings.xml ├── vcs.xml ├── modules.xml ├── webResources.xml └── library.iml ├── login ├── view │ ├── font-awesome │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── 404.php │ ├── index.php │ ├── logout.php │ ├── footer.php │ ├── users │ │ ├── home.php │ │ ├── forget.php │ │ ├── login.php │ │ └── change_password.php │ ├── materialize │ │ ├── LICENSE │ │ └── README.md │ └── header.php ├── index.php ├── .htaccess ├── controller │ ├── logout.php │ └── home.php ├── library │ ├── config.php │ └── database.php └── model │ └── authcheck.php ├── README.md └── excel ├── uploader ├── index.php └── excel-upload.php ├── PHPExcel ├── Chart │ ├── Renderer │ │ └── PHP Charting Libraries.txt │ ├── Exception.php │ └── Title.php ├── Shared │ ├── JAMA │ │ ├── CHANGELOG.TXT │ │ └── utils │ │ │ └── Maths.php │ └── Escher │ │ ├── DggContainer │ │ └── BstoreContainer.php │ │ └── DgContainer.php ├── locale │ ├── en │ │ └── uk │ │ │ └── config │ ├── bg │ │ └── config │ ├── cs │ │ └── config │ ├── de │ │ └── config │ ├── fr │ │ └── config │ ├── it │ │ └── config │ ├── no │ │ └── config │ ├── pt │ │ ├── br │ │ │ └── config │ │ └── config │ ├── ru │ │ └── config │ ├── tr │ │ └── config │ ├── nl │ │ └── config │ ├── pl │ │ └── config │ ├── hu │ │ └── config │ ├── da │ │ └── config │ ├── sv │ │ └── config │ ├── fi │ │ └── config │ └── es │ │ └── config ├── IComparable.php ├── Writer │ ├── IWriter.php │ └── Exception.php ├── Reader │ ├── IReadFilter.php │ ├── IReader.php │ ├── Exception.php │ └── DefaultReadFilter.php ├── Cell │ └── IValueBinder.php ├── Calculation │ ├── ExceptionHandler.php │ └── Exception.php ├── Exception.php └── RichText │ └── ITextElement.php └── downloader └── index.php /mail/index.php~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcsaini/php/HEAD/mail/PHPMailer/examples/contents.html -------------------------------------------------------------------------------- /ajax-login/check.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # php 2 | PHP Projects 3 | 4 | 1. Login System useing Easy Php 5 | 2. Send Mail using SMTP server 6 | 3. Import Data form Excel file and store in Database 7 | 4. A Shopping Cart in PHP and Mysql 8 | -------------------------------------------------------------------------------- /login/view/logout.php: -------------------------------------------------------------------------------- 1 | 4 |
5 | © 6 |
7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /login/view/users/home.php: -------------------------------------------------------------------------------- 1 | "; 12 | echo $userdata['email']; 13 | echo "
"; 14 | echo $userdata['first_name']; 15 | ?> -------------------------------------------------------------------------------- /excel/uploader/index.php: -------------------------------------------------------------------------------- 1 |

Excel File Uploader

2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 |

10 | 11 | 12 |
-------------------------------------------------------------------------------- /login/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteRule ^(.*)$ index.php?params=$1 [L,QSA] 4 | RewriteRule ^([^\.]+)$ $1.php [NC,L] 5 | RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php 6 | RewriteCond %{REQUEST_FILENAME} !-f 7 | RewriteCond %{REQUEST_FILENAME} !-d 8 | RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$ 9 | RewriteRule (.*)$ /$1/ [R=301,L] -------------------------------------------------------------------------------- /login/controller/logout.php: -------------------------------------------------------------------------------- 1 | model = new auth_model(); 14 | } 15 | 16 | public function index(){ 17 | session_destroy(); 18 | header("location: ".$GLOBALS['dynamic_url']."login"); 19 | } 20 | } -------------------------------------------------------------------------------- /excel/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt: -------------------------------------------------------------------------------- 1 | ChartDirector 2 | http://www.advsofteng.com/cdphp.html 3 | 4 | GraPHPite 5 | http://graphpite.sourceforge.net/ 6 | 7 | JpGraph 8 | http://www.aditus.nu/jpgraph/ 9 | 10 | LibChart 11 | http://naku.dohcrew.com/libchart/pages/introduction/ 12 | 13 | pChart 14 | http://pchart.sourceforge.net/ 15 | 16 | TeeChart 17 | http://www.steema.com/products/teechart/overview.html 18 | -------------------------------------------------------------------------------- /.idea/webResources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /excel/PHPExcel/Shared/JAMA/CHANGELOG.TXT: -------------------------------------------------------------------------------- 1 | Mar 1, 2005 11:15 AST by PM 2 | 3 | + For consistency, renamed Math.php to Maths.java, utils to util, 4 | tests to test, docs to doc - 5 | 6 | + Removed conditional logic from top of Matrix class. 7 | 8 | + Switched to using hypo function in Maths.php for all php-hypot calls. 9 | NOTE TO SELF: Need to make sure that all decompositions have been 10 | switched over to using the bundled hypo. 11 | 12 | Feb 25, 2005 at 10:00 AST by PM 13 | 14 | + Recommend using simpler Error.php instead of JAMA_Error.php but 15 | can be persuaded otherwise. 16 | 17 | -------------------------------------------------------------------------------- /login/library/config.php: -------------------------------------------------------------------------------- 1 | model = new auth_model(); 13 | $this->authcheck = new authcheck(); 14 | $this->session_id = $_SESSION['session_id']; 15 | } 16 | public function index(){ 17 | $userdata = $this->model->userDetail(); 18 | $data['userdata'] = $userdata; 19 | $data['page_title'] = "Home"; 20 | $data['view_page'] = "users/home.php"; 21 | $data['header'] = $GLOBALS['header']; 22 | $data['footer'] = $GLOBALS['footer']; 23 | return $data; 24 | } 25 | } -------------------------------------------------------------------------------- /.idea/library.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /login/view/users/forget.php: -------------------------------------------------------------------------------- 1 |

Forget Password

2 |
3 |
4 |
5 |
6 | 7 | 8 |
9 |
10 | 11 |
12 |
13 |
14 |
15 | '> Go Back 16 | -------------------------------------------------------------------------------- /excel/downloader/index.php: -------------------------------------------------------------------------------- 1 |

Excel File Downloader

2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |
ProductQuantityPriceTotal Price
Motherboard10550
Processor6318
Memory102.525
Total26-93
42 | 43 |

44 | 45 | 46 | 47 |
-------------------------------------------------------------------------------- /login/library/database.php: -------------------------------------------------------------------------------- 1 | hostname = $GLOBALS['hostname']; 18 | $this->username = $GLOBALS['username']; 19 | $this->password = $GLOBALS['password']; 20 | $this->database = $GLOBALS['database']; 21 | } 22 | 23 | function connectToDatabase() 24 | { 25 | $connection = new mysqli($this->hostname, $this->username, $this->password, $this->database); 26 | 27 | if ($connection->connect_errno > 0){ 28 | die("sorry errors in connection"); 29 | } 30 | else{ 31 | $this->connection = $connection; 32 | } 33 | return $connection; 34 | } 35 | 36 | } -------------------------------------------------------------------------------- /mail/email.php~: -------------------------------------------------------------------------------- 1 | This is a test mail using PHP mailer class."; 6 | $mail->IsSMTP(); 7 | $mail->SMTPDebug = 0; 8 | $mail->SMTPAuth = TRUE; 9 | $mail->SMTPSecure = "tls"; 10 | $mail->Port = 587; 11 | $mail->Username = "premchandsaini779@gmail.com"; 12 | $mail->Password = "Pcsaini@779"; 13 | $mail->Host = "smtp.gmail.com"; 14 | $mail->Mailer = "smtp"; 15 | $mail->SetFrom("premchandsaini779@gmail.com", "Prem Chand Saini"); 16 | $mail->AddReplyTo("premchandsaini779@gmail.com", "Prem Chand Saini"); 17 | $mail->AddAddress("premchandsaini81@gmail.com"); 18 | $mail->Subject = $subject; 19 | $mail->WordWrap = 80; 20 | $mail->MsgHTML($content); 21 | $mail->IsHTML(true); 22 | 23 | if(!$mail->Send()) 24 | echo "Problem on sending mail"; 25 | else 26 | echo "Mail sent"; 27 | ?> 28 | -------------------------------------------------------------------------------- /excel/PHPExcel/Shared/JAMA/utils/Maths.php: -------------------------------------------------------------------------------- 1 | abs($b)) { 16 | $r = $b / $a; 17 | $r = abs($a) * sqrt(1 + $r * $r); 18 | } elseif ($b != 0) { 19 | $r = $a / $b; 20 | $r = abs($b) * sqrt(1 + $r * $r); 21 | } else { 22 | $r = 0.0; 23 | } 24 | return $r; 25 | } // function hypo() 26 | 27 | 28 | /** 29 | * Mike Bommarito's version. 30 | * Compute n-dimensional hyotheneuse. 31 | * 32 | function hypot() { 33 | $s = 0; 34 | foreach (func_get_args() as $d) { 35 | if (is_numeric($d)) { 36 | $s += pow($d, 2); 37 | } else { 38 | throw new PHPExcel_Calculation_Exception(JAMAError(ArgumentTypeException)); 39 | } 40 | } 41 | return sqrt($s); 42 | } 43 | */ 44 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/contentsutf8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PHPMailer Test 6 | 7 | 8 |
9 |

This is a test of PHPMailer.

10 |
11 | PHPMailer rocks 12 |
13 |

This example uses HTML.

14 |

Chinese text: 郵件內容為空

15 |

Russian text: Пустое тело сообщения

16 |

Armenian text: Հաղորդագրությունը դատարկ է

17 |

Czech text: Prázdné tělo zprávy

18 |

Emoji: 😂 🦄 💥 📤 📧

19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /login/view/materialize/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-2016 Materialize 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/mail.phps: -------------------------------------------------------------------------------- 1 | setFrom('from@example.com', 'First Last'); 12 | //Set an alternative reply-to address 13 | $mail->addReplyTo('replyto@example.com', 'First Last'); 14 | //Set who the message is to be sent to 15 | $mail->addAddress('whoto@example.com', 'John Doe'); 16 | //Set the subject line 17 | $mail->Subject = 'PHPMailer mail() test'; 18 | //Read an HTML message body from an external file, convert referenced images to embedded, 19 | //convert HTML into a basic plain-text alternative body 20 | $mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__)); 21 | //Replace the plain text body with one created manually 22 | $mail->AltBody = 'This is a plain-text message body'; 23 | //Attach an image file 24 | $mail->addAttachment('images/phpmailer_mini.png'); 25 | 26 | //send the message, check for errors 27 | if (!$mail->send()) { 28 | echo "Mailer Error: " . $mail->ErrorInfo; 29 | } else { 30 | echo "Message sent!"; 31 | } 32 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/en/uk/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ## 30 | ## (For future use) 31 | ## 32 | currencySymbol = £ 33 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/sendmail.phps: -------------------------------------------------------------------------------- 1 | isSendmail(); 12 | //Set who the message is to be sent from 13 | $mail->setFrom('from@example.com', 'First Last'); 14 | //Set an alternative reply-to address 15 | $mail->addReplyTo('replyto@example.com', 'First Last'); 16 | //Set who the message is to be sent to 17 | $mail->addAddress('whoto@example.com', 'John Doe'); 18 | //Set the subject line 19 | $mail->Subject = 'PHPMailer sendmail test'; 20 | //Read an HTML message body from an external file, convert referenced images to embedded, 21 | //convert HTML into a basic plain-text alternative body 22 | $mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__)); 23 | //Replace the plain text body with one created manually 24 | $mail->AltBody = 'This is a plain-text message body'; 25 | //Attach an image file 26 | $mail->addAttachment('images/phpmailer_mini.png'); 27 | 28 | //send the message, check for errors 29 | if (!$mail->send()) { 30 | echo "Mailer Error: " . $mail->ErrorInfo; 31 | } else { 32 | echo "Message sent!"; 33 | } 34 | -------------------------------------------------------------------------------- /mail/PHPMailer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpmailer/phpmailer", 3 | "type": "library", 4 | "description": "PHPMailer is a full-featured email creation and transfer class for PHP", 5 | "authors": [ 6 | { 7 | "name": "Marcus Bointon", 8 | "email": "phpmailer@synchromedia.co.uk" 9 | }, 10 | { 11 | "name": "Jim Jagielski", 12 | "email": "jimjag@gmail.com" 13 | }, 14 | { 15 | "name": "Andy Prevost", 16 | "email": "codeworxtech@users.sourceforge.net" 17 | }, 18 | { 19 | "name": "Brent R. Matzelle" 20 | } 21 | ], 22 | "require": { 23 | "php": ">=5.0.0" 24 | }, 25 | "require-dev": { 26 | "phpdocumentor/phpdocumentor": "*", 27 | "phpunit/phpunit": "4.7.*" 28 | }, 29 | "suggest": { 30 | "league/oauth2-google": "Needed for Google XOAUTH2 authentication" 31 | }, 32 | "autoload": { 33 | "classmap": [ 34 | "class.phpmailer.php", 35 | "class.phpmaileroauth.php", 36 | "class.phpmaileroauthgoogle.php", 37 | "class.smtp.php", 38 | "class.pop3.php", 39 | "extras/EasyPeasyICS.php", 40 | "extras/ntlm_sasl_client.php" 41 | ] 42 | }, 43 | "license": "LGPL-2.1" 44 | } 45 | -------------------------------------------------------------------------------- /login/view/users/login.php: -------------------------------------------------------------------------------- 1 |
2 |

Login

3 | ".$message[0]."
"; 7 | } 8 | } 9 | ?> 10 |
11 |
12 |
13 | 14 | 15 |
16 |
17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 |
25 |
26 |
New User? Register
27 | 28 |
29 |
-------------------------------------------------------------------------------- /mail/PHPMailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- 1 | 6 | * @author young 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。'; 12 | $PHPMAILER_LANG['empty_message'] = '邮件正文为空。'; 13 | $PHPMAILER_LANG['encoding'] = '未知编码: '; 14 | $PHPMAILER_LANG['execute'] = '无法执行:'; 15 | $PHPMAILER_LANG['file_access'] = '无法访问文件:'; 16 | $PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:'; 17 | $PHPMAILER_LANG['from_failed'] = '发送地址错误:'; 18 | $PHPMAILER_LANG['instantiate'] = '未知函数调用。'; 19 | $PHPMAILER_LANG['invalid_address'] = '发送失败,电子邮箱地址是无效的:'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。'; 21 | $PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:'; 23 | $PHPMAILER_LANG['signing'] = '登录失败:'; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP服务器连接失败。'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP服务器出错: '; 26 | $PHPMAILER_LANG['variable_set'] = '无法设置或重置变量:'; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /login/model/authcheck.php: -------------------------------------------------------------------------------- 1 | model = new auth_model(); 14 | $this->helper = new helper(); 15 | 16 | $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; 17 | if (isset($_SESSION['session_id'])){ 18 | $result = $this->model->checkSession($_SESSION['session_id']); 19 | if($result) { 20 | $this->$result = $result; 21 | } 22 | else { 23 | if($GLOBALS['seourl'] == "false") { 24 | header("Location: ".$GLOBALS['dynamic_url']."login&redirecturl=".$actual_link); 25 | die(); 26 | } 27 | else { 28 | header("Location: ".$GLOBALS['dynamic_url']."login?redirecturl=".$actual_link); 29 | die(); 30 | } 31 | } 32 | } 33 | else { 34 | if($GLOBALS['seourl'] == "false") { 35 | header("Location: ".$GLOBALS['dynamic_url']."login&redirecturl=".$actual_link); 36 | die(); 37 | } 38 | else { 39 | header("Location: ".$GLOBALS['dynamic_url']."login?redirecturl=".$actual_link); 40 | die(); 41 | }; 42 | } 43 | 44 | } 45 | 46 | 47 | } -------------------------------------------------------------------------------- /mail/PHPMailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Peter Dave Hello <@PeterDaveHello/> 7 | * @author Jason Chiang 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。'; 13 | $PHPMAILER_LANG['empty_message'] = '郵件內容為空'; 14 | $PHPMAILER_LANG['encoding'] = '未知編碼: '; 15 | $PHPMAILER_LANG['execute'] = '無法執行:'; 16 | $PHPMAILER_LANG['file_access'] = '無法存取檔案:'; 17 | $PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:'; 18 | $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:'; 19 | $PHPMAILER_LANG['instantiate'] = '未知函數呼叫。'; 20 | $PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。'; 22 | $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:'; 24 | $PHPMAILER_LANG['signing'] = '電子簽章錯誤: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: '; 27 | $PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: '; 28 | $PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: '; 29 | -------------------------------------------------------------------------------- /mail/PHPMailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:身份验证失败。'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误: 不能连接SMTP主机。'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误: 数据不可接受。'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = '未知编码:'; 13 | $PHPMAILER_LANG['execute'] = '不能执行: '; 14 | $PHPMAILER_LANG['file_access'] = '不能访问文件:'; 15 | $PHPMAILER_LANG['file_open'] = '文件错误:不能打开文件:'; 16 | $PHPMAILER_LANG['from_failed'] = '下面的发送地址邮件发送失败了: '; 17 | $PHPMAILER_LANG['instantiate'] = '不能实现mail方法。'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。'; 20 | $PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /mail/PHPMailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.'; 11 | $PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다'; 12 | $PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: '; 13 | $PHPMAILER_LANG['execute'] = '실행 불가: '; 14 | $PHPMAILER_LANG['file_access'] = '파일 접근 불가: '; 15 | $PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: '; 16 | $PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: '; 17 | $PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다'; 18 | $PHPMAILER_LANG['invalid_address'] = '잘못된 주소: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.'; 20 | $PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: '; 22 | $PHPMAILER_LANG['signing'] = '서명 오류: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: '; 25 | $PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: '; 26 | $PHPMAILER_LANG['extension_missing'] = '확장자 없음: '; 27 | -------------------------------------------------------------------------------- /excel/PHPExcel/IComparable.php: -------------------------------------------------------------------------------- 1 | setFrom('from@example.com', 'First Last'); 16 | //Set an alternative reply-to address 17 | $mail->addReplyTo('replyto@example.com', 'First Last'); 18 | //Set who the message is to be sent to 19 | $mail->addAddress('whoto@example.com', 'John Doe'); 20 | //Set the subject line 21 | $mail->Subject = 'PHPMailer DKIM test'; 22 | //This should be the same as the domain of your From address 23 | $mail->DKIM_domain = 'example.com'; 24 | //Path to your private key file 25 | $mail->DKIM_private = 'dkim_private.pem'; 26 | //Set this to your own selector 27 | $mail->DKIM_selector = 'phpmailer'; 28 | //If your private key has a passphrase, set it here 29 | $mail->DKIM_passphrase = ''; 30 | //The identity you're signing as - usually your From address 31 | $mail->DKIM_identity = $mail->From; 32 | 33 | //send the message, check for errors 34 | if (!$mail->send()) { 35 | echo "Mailer Error: " . $mail->ErrorInfo; 36 | } else { 37 | echo "Message sent!"; 38 | } 39 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/cs/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = Kč 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULL! 42 | DIV0 = #DIV/0! 43 | VALUE = #HODNOTA! 44 | REF = #REF! 45 | NAME = #NÁZEV? 46 | NUM = #NUM! 47 | NA = #N/A 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/de/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULL! 42 | DIV0 = #DIV/0! 43 | VALUE = #WERT! 44 | REF = #BEZUG! 45 | NAME = #NAME? 46 | NUM = #ZAHL! 47 | NA = #NV 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/fr/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NUL! 42 | DIV0 = #DIV/0! 43 | VALUE = #VALEUR! 44 | REF = #REF! 45 | NAME = #NOM? 46 | NUM = #NOMBRE! 47 | NA = #N/A 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/it/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULLO! 42 | DIV0 = #DIV/0! 43 | VALUE = #VALORE! 44 | REF = #RIF! 45 | NAME = #NOME? 46 | NUM = #NUM! 47 | NA = #N/D 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/no/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = kr 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULL! 42 | DIV0 = #DIV/0! 43 | VALUE = #VERDI! 44 | REF = #REF! 45 | NAME = #NAVN? 46 | NUM = #NUM! 47 | NA = #I/T 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/pt/br/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = R$ 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULO! 42 | DIV0 = #DIV/0! 43 | VALUE = #VALOR! 44 | REF = #REF! 45 | NAME = #NOME? 46 | NUM = #NÚM! 47 | NA = #N/D 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/pt/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULO! 42 | DIV0 = #DIV/0! 43 | VALUE = #VALOR! 44 | REF = #REF! 45 | NAME = #NOME? 46 | NUM = #NÚM! 47 | NA = #N/D 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/ru/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = р 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #ПУСТО! 42 | DIV0 = #ДЕЛ/0! 43 | VALUE = #ЗНАЧ! 44 | REF = #ССЫЛ! 45 | NAME = #ИМЯ? 46 | NUM = #ЧИСЛО! 47 | NA = #Н/Д 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/tr/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = YTL 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #BOŞ! 42 | DIV0 = #SAYI/0! 43 | VALUE = #DEĞER! 44 | REF = #BAŞV! 45 | NAME = #AD? 46 | NUM = #SAYI! 47 | NA = #YOK 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/nl/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #LEEG! 42 | DIV0 = #DEEL/0! 43 | VALUE = #WAARDE! 44 | REF = #VERW! 45 | NAME = #NAAM? 46 | NUM = #GETAL! 47 | NA = #N/B 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/pl/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = zł 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #ZERO! 42 | DIV0 = #DZIEL/0! 43 | VALUE = #ARG! 44 | REF = #ADR! 45 | NAME = #NAZWA? 46 | NUM = #LICZBA! 47 | NA = #N/D! 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/hu/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = Ft 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULLA! 42 | DIV0 = #ZÉRÓOSZTÓ! 43 | VALUE = #ÉRTÉK! 44 | REF = #HIV! 45 | NAME = #NÉV? 46 | NUM = #SZÁM! 47 | NA = #HIÁNYZIK 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/da/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = kr 36 | 37 | 38 | 39 | ## 40 | ## Excel Error Codes (For future use) 41 | ## 42 | NULL = #NUL! 43 | DIV0 = #DIVISION/0! 44 | VALUE = #VÆRDI! 45 | REF = #REFERENCE! 46 | NAME = #NAVN? 47 | NUM = #NUM! 48 | NA = #I/T 49 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/sv/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = kr 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #Skärning! 42 | DIV0 = #Division/0! 43 | VALUE = #Värdefel! 44 | REF = #Referens! 45 | NAME = #Namn? 46 | NUM = #Ogiltigt! 47 | NA = #Saknas! 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/fi/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = $ # Symbol not known, should it be a € (Euro)? 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #TYHJÄ! 42 | DIV0 = #JAKO/0! 43 | VALUE = #ARVO! 44 | REF = #VIITTAUS! 45 | NAME = #NIMI? 46 | NUM = #LUKU! 47 | NA = #PUUTTUU 48 | -------------------------------------------------------------------------------- /excel/PHPExcel/locale/es/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = $ ## I'm surprised that the Excel Documentation suggests $ rather than € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #¡NULO! 42 | DIV0 = #¡DIV/0! 43 | VALUE = #¡VALOR! 44 | REF = #¡REF! 45 | NAME = #¿NOMBRE? 46 | NUM = #¡NÚM! 47 | NA = #N/A 48 | -------------------------------------------------------------------------------- /mail/PHPMailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'שגיאת SMTP: פעולת האימות נכשלה.'; 9 | $PHPMAILER_LANG['connect_host'] = 'שגיאת SMTP: לא הצלחתי להתחבר לשרת SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'שגיאת SMTP: מידע לא התקבל.'; 11 | $PHPMAILER_LANG['empty_message'] = 'גוף ההודעה ריק'; 12 | $PHPMAILER_LANG['invalid_address'] = 'כתובת שגויה: '; 13 | $PHPMAILER_LANG['encoding'] = 'קידוד לא מוכר: '; 14 | $PHPMAILER_LANG['execute'] = 'לא הצלחתי להפעיל את: '; 15 | $PHPMAILER_LANG['file_access'] = 'לא ניתן לגשת לקובץ: '; 16 | $PHPMAILER_LANG['file_open'] = 'שגיאת קובץ: לא ניתן לגשת לקובץ: '; 17 | $PHPMAILER_LANG['from_failed'] = 'כתובות הנמענים הבאות נכשלו: '; 18 | $PHPMAILER_LANG['instantiate'] = 'לא הצלחתי להפעיל את פונקציית המייל.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' אינה נתמכת.'; 20 | $PHPMAILER_LANG['provide_address'] = 'חובה לספק לפחות כתובת אחת של מקבל המייל.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'שגיאת SMTP: הנמענים הבאים נכשלו: '; 22 | $PHPMAILER_LANG['signing'] = 'שגיאת חתימה: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /mail/PHPMailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Yoshi Sakai 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTPエラー: 認証できませんでした。'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTPエラー: SMTPホストに接続できませんでした。'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTPエラー: データが受け付けられませんでした。'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = '不明なエンコーディング: '; 14 | $PHPMAILER_LANG['execute'] = '実行できませんでした: '; 15 | $PHPMAILER_LANG['file_access'] = 'ファイルにアクセスできません: '; 16 | $PHPMAILER_LANG['file_open'] = 'ファイルエラー: ファイルを開けません: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Fromアドレスを登録する際にエラーが発生しました: '; 18 | $PHPMAILER_LANG['instantiate'] = 'メール関数が正常に動作しませんでした。'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 20 | $PHPMAILER_LANG['provide_address'] = '少なくとも1つメールアドレスを 指定する必要があります。'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' メーラーがサポートされていません。'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTPエラー: 次の受信者アドレスに 間違いがあります: '; 23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/exceptions.phps: -------------------------------------------------------------------------------- 1 | setFrom('from@example.com', 'First Last'); 14 | //Set an alternative reply-to address 15 | $mail->addReplyTo('replyto@example.com', 'First Last'); 16 | //Set who the message is to be sent to 17 | $mail->addAddress('whoto@example.com', 'John Doe'); 18 | //Set the subject line 19 | $mail->Subject = 'PHPMailer Exceptions test'; 20 | //Read an HTML message body from an external file, convert referenced images to embedded, 21 | //and convert the HTML into a basic plain-text alternative body 22 | $mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__)); 23 | //Replace the plain text body with one created manually 24 | $mail->AltBody = 'This is a plain-text message body'; 25 | //Attach an image file 26 | $mail->addAttachment('images/phpmailer_mini.png'); 27 | //send the message 28 | //Note that we don't need check the response from this because it will throw an exception if it has trouble 29 | $mail->send(); 30 | echo "Message sent!"; 31 | } catch (phpmailerException $e) { 32 | echo $e->errorMessage(); //Pretty error messages from PHPMailer 33 | } catch (Exception $e) { 34 | echo $e->getMessage(); //Boring error messages from anything else! 35 | } 36 | -------------------------------------------------------------------------------- /login/view/users/change_password.php: -------------------------------------------------------------------------------- 1 |
2 |

Change Password

3 | ".$message[0]."
"; 7 | } 8 | } 9 | if (!empty($result)) { 10 | if($result == 1) { 11 | echo " Successfully Change Password! Go Back "; 12 | } 13 | } 14 | ?> 15 |
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 | 28 |
29 |
30 | 31 |
32 |
33 |
34 |
-------------------------------------------------------------------------------- /mail/PHPMailer/extras/README.md: -------------------------------------------------------------------------------- 1 | #PHPMailer Extras 2 | 3 | These classes provide optional additional functions to PHPMailer. 4 | 5 | These are not loaded by the PHPMailer autoloader, so in some cases you may need to `require` them yourself before using them. 6 | 7 | ##EasyPeasyICS 8 | 9 | This class was originally written by Manuel Reinhard and provides a simple means of generating ICS/vCal files that are used in sending calendar events. PHPMailer does not use it directly, but you can use it to generate content appropriate for placing in the `Ical` property of PHPMailer. The PHPMailer project is now its official home as Manuel has given permission for that and is no longer maintaining it himself. 10 | 11 | ##htmlfilter 12 | 13 | This class by Konstantin Riabitsev and Jim Jagielski implements HTML filtering to remove potentially malicious tags, such as ` 15 | 16 | 17 | 18 | 19 | 20 | 44 | 45 |
46 | 47 | -------------------------------------------------------------------------------- /login/view/materialize/README.md: -------------------------------------------------------------------------------- 1 | ![alt tag](https://raw.github.com/dogfalo/materialize/master/images/materialize.gif) 2 | =========== 3 | 4 | [![Travis CI](https://travis-ci.org/Dogfalo/materialize.svg?branch=master)](https://travis-ci.org/Dogfalo/materialize)[![devDependency Status](https://david-dm.org/Dogfalo/materialize/dev-status.svg)](https://david-dm.org/Dogfalo/materialize#info=devDependencies)[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/Dogfalo/materialize?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 5 | 6 | [Materialize](http://materializecss.com/), a CSS Framework based on material design 7 | 8 | ### Current Version : v0.97.7 9 | 10 | ## Sass Requirements: 11 | - Ruby Sass 3.3+, LibSass 0.6+ 12 | 13 | ## Supported Browsers: 14 | Chrome 35+, Firefox 31+, Safari 7+, IE 10+ 15 | 16 | ## Changelog 17 | - v0.97.7 (July 23rd) 18 | - Basic horizontal cards 19 | - Carousel bug fixes and new features 20 | - Updated sidenav styles and new component 21 | - Meteor package now supports Sass 22 | - Autocomplete form component 23 | - Chips jQuery plugin 24 | - v0.97.6 (April 1st) 25 | - **Removed deprecated material icons from project** 26 | - **Changed /font directory to /fonts** 27 | - Datepicker and ScrollSpy now compatible with jQuery 2.2.x 28 | - Responsive tables now work with empty cells 29 | - Added focus states to checkboxes, switches, and radio buttons 30 | - Sidenav and Modals no longer cause flicker with scrollbar 31 | - Materialbox overflow and z-index issues fixed 32 | - Added new option for Card actions within a Card reveal 33 | - v0.97.5 (Dec 21, 2015) 34 | - Fixed Meteor package crash 35 | - v0.97.4 (Dec 20, 2015) 36 | - Added Jasmine testing with Travis CI 37 | - Select bugfixes 38 | - Grid Offset bugfix 39 | - Dropdown overflow bugfix 40 | - Range slider error bugfix 41 | 42 | 43 | 44 | ## Contributing 45 | [Please read CONTRIBUTING.md for more information](CONTRIBUTING.md) 46 | 47 | ## Testing 48 | We use Jasmine as our testing framework and we're trying to write a robust test suite for our components. If you want to help, [here's a starting guide on how to write tests in Jasmine](https://docs.google.com/document/d/1dVM6qGt_b_y9RRhr9X7oZfFydaJIEqB9CT7yekv-4XE/edit?usp=sharing) 49 | -------------------------------------------------------------------------------- /excel/PHPExcel/Shared/Escher/DgContainer.php: -------------------------------------------------------------------------------- 1 | _dgId; 56 | } 57 | 58 | public function setDgId($value) 59 | { 60 | $this->_dgId = $value; 61 | } 62 | 63 | public function getLastSpId() 64 | { 65 | return $this->_lastSpId; 66 | } 67 | 68 | public function setLastSpId($value) 69 | { 70 | $this->_lastSpId = $value; 71 | } 72 | 73 | public function getSpgrContainer() 74 | { 75 | return $this->_spgrContainer; 76 | } 77 | 78 | public function setSpgrContainer($spgrContainer) 79 | { 80 | return $this->_spgrContainer = $spgrContainer; 81 | } 82 | 83 | } 84 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/styles/shThemeEmacs.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:black !important;} 2 | .syntaxhighlighter .line.alt1{background-color:black !important;} 3 | .syntaxhighlighter .line.alt2{background-color:black !important;} 4 | .syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#2a3133 !important;} 5 | .syntaxhighlighter .line.highlighted.number{color:white !important;} 6 | .syntaxhighlighter table caption{color:#d3d3d3 !important;} 7 | .syntaxhighlighter .gutter{color:#d3d3d3 !important;} 8 | .syntaxhighlighter .gutter .line{border-right:3px solid #990000 !important;} 9 | .syntaxhighlighter .gutter .line.highlighted{background-color:#990000 !important;color:black !important;} 10 | .syntaxhighlighter.printing .line .content{border:none !important;} 11 | .syntaxhighlighter.collapsed{overflow:visible !important;} 12 | .syntaxhighlighter.collapsed .toolbar{color:#ebdb8d !important;background:black !important;border:1px solid #990000 !important;} 13 | .syntaxhighlighter.collapsed .toolbar a{color:#ebdb8d !important;} 14 | .syntaxhighlighter.collapsed .toolbar a:hover{color:#ff7d27 !important;} 15 | .syntaxhighlighter .toolbar{color:white !important;background:#990000 !important;border:none !important;} 16 | .syntaxhighlighter .toolbar a{color:white !important;} 17 | .syntaxhighlighter .toolbar a:hover{color:#9ccff4 !important;} 18 | .syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:#d3d3d3 !important;} 19 | .syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#ff7d27 !important;} 20 | .syntaxhighlighter .string,.syntaxhighlighter .string a{color:#ff9e7b !important;} 21 | .syntaxhighlighter .keyword{color:aqua !important;} 22 | .syntaxhighlighter .preprocessor{color:#aec4de !important;} 23 | .syntaxhighlighter .variable{color:#ffaa3e !important;} 24 | .syntaxhighlighter .value{color:#009900 !important;} 25 | .syntaxhighlighter .functions{color:#81cef9 !important;} 26 | .syntaxhighlighter .constants{color:#ff9e7b !important;} 27 | .syntaxhighlighter .script{font-weight:bold !important;color:aqua !important;background-color:none !important;} 28 | .syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:#ebdb8d !important;} 29 | .syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:#ff7d27 !important;} 30 | .syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:#aec4de !important;} 31 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/styles/shThemeMDUltra.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:#222222 !important;} 2 | .syntaxhighlighter .line.alt1{background-color:#222222 !important;} 3 | .syntaxhighlighter .line.alt2{background-color:#222222 !important;} 4 | .syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#253e5a !important;} 5 | .syntaxhighlighter .line.highlighted.number{color:white !important;} 6 | .syntaxhighlighter table caption{color:lime !important;} 7 | .syntaxhighlighter .gutter{color:#38566f !important;} 8 | .syntaxhighlighter .gutter .line{border-right:3px solid #435a5f !important;} 9 | .syntaxhighlighter .gutter .line.highlighted{background-color:#435a5f !important;color:#222222 !important;} 10 | .syntaxhighlighter.printing .line .content{border:none !important;} 11 | .syntaxhighlighter.collapsed{overflow:visible !important;} 12 | .syntaxhighlighter.collapsed .toolbar{color:#428bdd !important;background:black !important;border:1px solid #435a5f !important;} 13 | .syntaxhighlighter.collapsed .toolbar a{color:#428bdd !important;} 14 | .syntaxhighlighter.collapsed .toolbar a:hover{color:lime !important;} 15 | .syntaxhighlighter .toolbar{color:#aaaaff !important;background:#435a5f !important;border:none !important;} 16 | .syntaxhighlighter .toolbar a{color:#aaaaff !important;} 17 | .syntaxhighlighter .toolbar a:hover{color:#9ccff4 !important;} 18 | .syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:lime !important;} 19 | .syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#428bdd !important;} 20 | .syntaxhighlighter .string,.syntaxhighlighter .string a{color:lime !important;} 21 | .syntaxhighlighter .keyword{color:#aaaaff !important;} 22 | .syntaxhighlighter .preprocessor{color:#8aa6c1 !important;} 23 | .syntaxhighlighter .variable{color:aqua !important;} 24 | .syntaxhighlighter .value{color:#f7e741 !important;} 25 | .syntaxhighlighter .functions{color:#ff8000 !important;} 26 | .syntaxhighlighter .constants{color:yellow !important;} 27 | .syntaxhighlighter .script{font-weight:bold !important;color:#aaaaff !important;background-color:none !important;} 28 | .syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:red !important;} 29 | .syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:yellow !important;} 30 | .syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:#ffaa3e !important;} 31 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/styles/shThemeRDark.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:#1b2426 !important;} 2 | .syntaxhighlighter .line.alt1{background-color:#1b2426 !important;} 3 | .syntaxhighlighter .line.alt2{background-color:#1b2426 !important;} 4 | .syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#323e41 !important;} 5 | .syntaxhighlighter .line.highlighted.number{color:#b9bdb6 !important;} 6 | .syntaxhighlighter table caption{color:#b9bdb6 !important;} 7 | .syntaxhighlighter .gutter{color:#afafaf !important;} 8 | .syntaxhighlighter .gutter .line{border-right:3px solid #435a5f !important;} 9 | .syntaxhighlighter .gutter .line.highlighted{background-color:#435a5f !important;color:#1b2426 !important;} 10 | .syntaxhighlighter.printing .line .content{border:none !important;} 11 | .syntaxhighlighter.collapsed{overflow:visible !important;} 12 | .syntaxhighlighter.collapsed .toolbar{color:#5ba1cf !important;background:black !important;border:1px solid #435a5f !important;} 13 | .syntaxhighlighter.collapsed .toolbar a{color:#5ba1cf !important;} 14 | .syntaxhighlighter.collapsed .toolbar a:hover{color:#5ce638 !important;} 15 | .syntaxhighlighter .toolbar{color:white !important;background:#435a5f !important;border:none !important;} 16 | .syntaxhighlighter .toolbar a{color:white !important;} 17 | .syntaxhighlighter .toolbar a:hover{color:#e0e8ff !important;} 18 | .syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:#b9bdb6 !important;} 19 | .syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#878a85 !important;} 20 | .syntaxhighlighter .string,.syntaxhighlighter .string a{color:#5ce638 !important;} 21 | .syntaxhighlighter .keyword{color:#5ba1cf !important;} 22 | .syntaxhighlighter .preprocessor{color:#435a5f !important;} 23 | .syntaxhighlighter .variable{color:#ffaa3e !important;} 24 | .syntaxhighlighter .value{color:#009900 !important;} 25 | .syntaxhighlighter .functions{color:#ffaa3e !important;} 26 | .syntaxhighlighter .constants{color:#e0e8ff !important;} 27 | .syntaxhighlighter .script{font-weight:bold !important;color:#5ba1cf !important;background-color:none !important;} 28 | .syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:#e0e8ff !important;} 29 | .syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:white !important;} 30 | .syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:#ffaa3e !important;} 31 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/styles/shThemeMidnight.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:#0f192a !important;} 2 | .syntaxhighlighter .line.alt1{background-color:#0f192a !important;} 3 | .syntaxhighlighter .line.alt2{background-color:#0f192a !important;} 4 | .syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#253e5a !important;} 5 | .syntaxhighlighter .line.highlighted.number{color:#38566f !important;} 6 | .syntaxhighlighter table caption{color:#d1edff !important;} 7 | .syntaxhighlighter .gutter{color:#afafaf !important;} 8 | .syntaxhighlighter .gutter .line{border-right:3px solid #435a5f !important;} 9 | .syntaxhighlighter .gutter .line.highlighted{background-color:#435a5f !important;color:#0f192a !important;} 10 | .syntaxhighlighter.printing .line .content{border:none !important;} 11 | .syntaxhighlighter.collapsed{overflow:visible !important;} 12 | .syntaxhighlighter.collapsed .toolbar{color:#428bdd !important;background:black !important;border:1px solid #435a5f !important;} 13 | .syntaxhighlighter.collapsed .toolbar a{color:#428bdd !important;} 14 | .syntaxhighlighter.collapsed .toolbar a:hover{color:#1dc116 !important;} 15 | .syntaxhighlighter .toolbar{color:#d1edff !important;background:#435a5f !important;border:none !important;} 16 | .syntaxhighlighter .toolbar a{color:#d1edff !important;} 17 | .syntaxhighlighter .toolbar a:hover{color:#8aa6c1 !important;} 18 | .syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:#d1edff !important;} 19 | .syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#428bdd !important;} 20 | .syntaxhighlighter .string,.syntaxhighlighter .string a{color:#1dc116 !important;} 21 | .syntaxhighlighter .keyword{color:#b43d3d !important;} 22 | .syntaxhighlighter .preprocessor{color:#8aa6c1 !important;} 23 | .syntaxhighlighter .variable{color:#ffaa3e !important;} 24 | .syntaxhighlighter .value{color:#f7e741 !important;} 25 | .syntaxhighlighter .functions{color:#ffaa3e !important;} 26 | .syntaxhighlighter .constants{color:#e0e8ff !important;} 27 | .syntaxhighlighter .script{font-weight:bold !important;color:#b43d3d !important;background-color:none !important;} 28 | .syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:#f8bb00 !important;} 29 | .syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:white !important;} 30 | .syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:#ffaa3e !important;} 31 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/styles/shThemeDefault.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:white !important;} 2 | .syntaxhighlighter .line.alt1{background-color:white !important;} 3 | .syntaxhighlighter .line.alt2{background-color:white !important;} 4 | .syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#e0e0e0 !important;} 5 | .syntaxhighlighter .line.highlighted.number{color:black !important;} 6 | .syntaxhighlighter table caption{color:black !important;} 7 | .syntaxhighlighter .gutter{color:#afafaf !important;} 8 | .syntaxhighlighter .gutter .line{border-right:3px solid #6ce26c !important;} 9 | .syntaxhighlighter .gutter .line.highlighted{background-color:#6ce26c !important;color:white !important;} 10 | .syntaxhighlighter.printing .line .content{border:none !important;} 11 | .syntaxhighlighter.collapsed{overflow:visible !important;} 12 | .syntaxhighlighter.collapsed .toolbar{color:blue !important;background:white !important;border:1px solid #6ce26c !important;} 13 | .syntaxhighlighter.collapsed .toolbar a{color:blue !important;} 14 | .syntaxhighlighter.collapsed .toolbar a:hover{color:red !important;} 15 | .syntaxhighlighter .toolbar{color:white !important;background:#6ce26c !important;border:none !important;} 16 | .syntaxhighlighter .toolbar a{color:white !important;} 17 | .syntaxhighlighter .toolbar a:hover{color:black !important;} 18 | .syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:black !important;} 19 | .syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#008200 !important;} 20 | .syntaxhighlighter .string,.syntaxhighlighter .string a{color:blue !important;} 21 | .syntaxhighlighter .keyword{color:#006699 !important;} 22 | .syntaxhighlighter .preprocessor{color:gray !important;} 23 | .syntaxhighlighter .variable{color:#aa7700 !important;} 24 | .syntaxhighlighter .value{color:#009900 !important;} 25 | .syntaxhighlighter .functions{color:#ff1493 !important;} 26 | .syntaxhighlighter .constants{color:#0066cc !important;} 27 | .syntaxhighlighter .script{font-weight:bold !important;color:#006699 !important;background-color:none !important;} 28 | .syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:gray !important;} 29 | .syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:#ff1493 !important;} 30 | .syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:red !important;} 31 | .syntaxhighlighter .keyword{font-weight:bold !important;} 32 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/ssl_options.phps: -------------------------------------------------------------------------------- 1 | isSMTP(); 17 | 18 | //Enable SMTP debugging 19 | // 0 = off (for production use) 20 | // 1 = client messages 21 | // 2 = client and server messages 22 | $mail->SMTPDebug = 2; 23 | 24 | //Ask for HTML-friendly debug output 25 | $mail->Debugoutput = 'html'; 26 | 27 | //Set the hostname of the mail server 28 | $mail->Host = 'smtp.example.com'; 29 | 30 | //Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission 31 | $mail->Port = 587; 32 | 33 | //Set the encryption system to use - ssl (deprecated) or tls 34 | $mail->SMTPSecure = 'tls'; 35 | 36 | //Custom connection options 37 | $mail->SMTPOptions = array ( 38 | 'ssl' => array( 39 | 'verify_peer' => true, 40 | 'verify_depth' => 3, 41 | 'allow_self_signed' => true, 42 | 'peer_name' => 'smtp.example.com', 43 | 'cafile' => '/etc/ssl/ca_cert.pem', 44 | ) 45 | ); 46 | 47 | //Whether to use SMTP authentication 48 | $mail->SMTPAuth = true; 49 | 50 | //Username to use for SMTP authentication - use full email address for gmail 51 | $mail->Username = "username@example.com"; 52 | 53 | //Password to use for SMTP authentication 54 | $mail->Password = "yourpassword"; 55 | 56 | //Set who the message is to be sent from 57 | $mail->setFrom('from@example.com', 'First Last'); 58 | 59 | //Set who the message is to be sent to 60 | $mail->addAddress('whoto@example.com', 'John Doe'); 61 | 62 | //Set the subject line 63 | $mail->Subject = 'PHPMailer SMTP options test'; 64 | 65 | //Read an HTML message body from an external file, convert referenced images to embedded, 66 | //convert HTML into a basic plain-text alternative body 67 | $mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__)); 68 | 69 | //send the message, check for errors 70 | if (!$mail->send()) { 71 | echo "Mailer Error: " . $mail->ErrorInfo; 72 | } else { 73 | echo "Message sent!"; 74 | } 75 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/styles/shThemeVisualStudio.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:white !important;} 2 | .syntaxhighlighter .line.alt1{background-color:white !important;} 3 | .syntaxhighlighter .line.alt2{background-color:white !important;} 4 | .syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#e0e0e0 !important;} 5 | .syntaxhighlighter .line.highlighted.number{color:black !important;} 6 | .syntaxhighlighter table caption{color:black !important;} 7 | .syntaxhighlighter .gutter{color:#afafaf !important;} 8 | .syntaxhighlighter .gutter .line{border-right:3px solid #6ce26c !important;} 9 | .syntaxhighlighter .gutter .line.highlighted{background-color:#6ce26c !important;color:white !important;} 10 | .syntaxhighlighter.printing .line .content{border:none !important;} 11 | .syntaxhighlighter.collapsed{overflow:visible !important;} 12 | .syntaxhighlighter.collapsed .toolbar{color:blue !important;background:white !important;border:1px solid #6ce26c !important;} 13 | .syntaxhighlighter.collapsed .toolbar a{color:blue !important;} 14 | .syntaxhighlighter.collapsed .toolbar a:hover{color:red !important;} 15 | .syntaxhighlighter .toolbar{color:white !important;background:#6ce26c !important;border:none !important;} 16 | .syntaxhighlighter .toolbar a{color:white !important;} 17 | .syntaxhighlighter .toolbar a:hover{color:black !important;} 18 | .syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:black !important;} 19 | .syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#008200 !important;} 20 | .syntaxhighlighter .string,.syntaxhighlighter .string a{color:#d11010 !important;} 21 | .syntaxhighlighter .keyword{color:#006699 !important;} 22 | .syntaxhighlighter .preprocessor{color:gray !important;} 23 | .syntaxhighlighter .variable{color:#aa7700 !important;} 24 | .syntaxhighlighter .value{color:#009900 !important;} 25 | .syntaxhighlighter .functions{color:#ff1493 !important;} 26 | .syntaxhighlighter .constants{color:#0066cc !important;} 27 | .syntaxhighlighter .script{font-weight:bold !important;color:#006699 !important;background-color:none !important;} 28 | .syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:gray !important;} 29 | .syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:#ff1493 !important;} 30 | .syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:red !important;} 31 | .syntaxhighlighter .keyword{font-weight:bold !important;} 32 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/pop_before_smtp.phps: -------------------------------------------------------------------------------- 1 | isSMTP(); 18 | //Enable SMTP debugging 19 | // 0 = off (for production use) 20 | // 1 = client messages 21 | // 2 = client and server messages 22 | $mail->SMTPDebug = 2; 23 | //Ask for HTML-friendly debug output 24 | $mail->Debugoutput = 'html'; 25 | //Set the hostname of the mail server 26 | $mail->Host = "mail.example.com"; 27 | //Set the SMTP port number - likely to be 25, 465 or 587 28 | $mail->Port = 25; 29 | //Whether to use SMTP authentication 30 | $mail->SMTPAuth = false; 31 | //Set who the message is to be sent from 32 | $mail->setFrom('from@example.com', 'First Last'); 33 | //Set an alternative reply-to address 34 | $mail->addReplyTo('replyto@example.com', 'First Last'); 35 | //Set who the message is to be sent to 36 | $mail->addAddress('whoto@example.com', 'John Doe'); 37 | //Set the subject line 38 | $mail->Subject = 'PHPMailer POP-before-SMTP test'; 39 | //Read an HTML message body from an external file, convert referenced images to embedded, 40 | //and convert the HTML into a basic plain-text alternative body 41 | $mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__)); 42 | //Replace the plain text body with one created manually 43 | $mail->AltBody = 'This is a plain-text message body'; 44 | //Attach an image file 45 | $mail->addAttachment('images/phpmailer_mini.png'); 46 | //send the message 47 | //Note that we don't need check the response from this because it will throw an exception if it has trouble 48 | $mail->send(); 49 | echo "Message sent!"; 50 | } catch (phpmailerException $e) { 51 | echo $e->errorMessage(); //Pretty error messages from PHPMailer 52 | } catch (Exception $e) { 53 | echo $e->getMessage(); //Boring error messages from anything else! 54 | } 55 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/styles/shThemeFadeToGrey.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:#121212 !important;} 2 | .syntaxhighlighter .line.alt1{background-color:#121212 !important;} 3 | .syntaxhighlighter .line.alt2{background-color:#121212 !important;} 4 | .syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#2c2c29 !important;} 5 | .syntaxhighlighter .line.highlighted.number{color:white !important;} 6 | .syntaxhighlighter table caption{color:white !important;} 7 | .syntaxhighlighter .gutter{color:#afafaf !important;} 8 | .syntaxhighlighter .gutter .line{border-right:3px solid #3185b9 !important;} 9 | .syntaxhighlighter .gutter .line.highlighted{background-color:#3185b9 !important;color:#121212 !important;} 10 | .syntaxhighlighter.printing .line .content{border:none !important;} 11 | .syntaxhighlighter.collapsed{overflow:visible !important;} 12 | .syntaxhighlighter.collapsed .toolbar{color:#3185b9 !important;background:black !important;border:1px solid #3185b9 !important;} 13 | .syntaxhighlighter.collapsed .toolbar a{color:#3185b9 !important;} 14 | .syntaxhighlighter.collapsed .toolbar a:hover{color:#d01d33 !important;} 15 | .syntaxhighlighter .toolbar{color:white !important;background:#3185b9 !important;border:none !important;} 16 | .syntaxhighlighter .toolbar a{color:white !important;} 17 | .syntaxhighlighter .toolbar a:hover{color:#96daff !important;} 18 | .syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:white !important;} 19 | .syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#696854 !important;} 20 | .syntaxhighlighter .string,.syntaxhighlighter .string a{color:#e3e658 !important;} 21 | .syntaxhighlighter .keyword{color:#d01d33 !important;} 22 | .syntaxhighlighter .preprocessor{color:#435a5f !important;} 23 | .syntaxhighlighter .variable{color:#898989 !important;} 24 | .syntaxhighlighter .value{color:#009900 !important;} 25 | .syntaxhighlighter .functions{color:#aaaaaa !important;} 26 | .syntaxhighlighter .constants{color:#96daff !important;} 27 | .syntaxhighlighter .script{font-weight:bold !important;color:#d01d33 !important;background-color:none !important;} 28 | .syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:#ffc074 !important;} 29 | .syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:#4a8cdb !important;} 30 | .syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:#96daff !important;} 31 | .syntaxhighlighter .functions{font-weight:bold !important;} 32 | -------------------------------------------------------------------------------- /excel/PHPExcel/Chart/Title.php: -------------------------------------------------------------------------------- 1 | _caption = $caption; 59 | $this->_layout = $layout; 60 | } 61 | 62 | /** 63 | * Get caption 64 | * 65 | * @return string 66 | */ 67 | public function getCaption() { 68 | return $this->_caption; 69 | } 70 | 71 | /** 72 | * Set caption 73 | * 74 | * @param string $caption 75 | * @return PHPExcel_Chart_Title 76 | */ 77 | public function setCaption($caption = null) { 78 | $this->_caption = $caption; 79 | 80 | return $this; 81 | } 82 | 83 | /** 84 | * Get Layout 85 | * 86 | * @return PHPExcel_Chart_Layout 87 | */ 88 | public function getLayout() { 89 | return $this->_layout; 90 | } 91 | 92 | } 93 | -------------------------------------------------------------------------------- /mail/PHPMailer/examples/gmail.phps: -------------------------------------------------------------------------------- 1 | isSMTP(); 17 | 18 | //Enable SMTP debugging 19 | // 0 = off (for production use) 20 | // 1 = client messages 21 | // 2 = client and server messages 22 | $mail->SMTPDebug = 2; 23 | 24 | //Ask for HTML-friendly debug output 25 | $mail->Debugoutput = 'html'; 26 | 27 | //Set the hostname of the mail server 28 | $mail->Host = 'smtp.gmail.com'; 29 | // use 30 | // $mail->Host = gethostbyname('smtp.gmail.com'); 31 | // if your network does not support SMTP over IPv6 32 | 33 | //Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission 34 | $mail->Port = 587; 35 | 36 | //Set the encryption system to use - ssl (deprecated) or tls 37 | $mail->SMTPSecure = 'tls'; 38 | 39 | //Whether to use SMTP authentication 40 | $mail->SMTPAuth = true; 41 | 42 | //Username to use for SMTP authentication - use full email address for gmail 43 | $mail->Username = "username@gmail.com"; 44 | 45 | //Password to use for SMTP authentication 46 | $mail->Password = "yourpassword"; 47 | 48 | //Set who the message is to be sent from 49 | $mail->setFrom('from@example.com', 'First Last'); 50 | 51 | //Set an alternative reply-to address 52 | $mail->addReplyTo('replyto@example.com', 'First Last'); 53 | 54 | //Set who the message is to be sent to 55 | $mail->addAddress('whoto@example.com', 'John Doe'); 56 | 57 | //Set the subject line 58 | $mail->Subject = 'PHPMailer GMail SMTP test'; 59 | 60 | //Read an HTML message body from an external file, convert referenced images to embedded, 61 | //convert HTML into a basic plain-text alternative body 62 | $mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__)); 63 | 64 | //Replace the plain text body with one created manually 65 | $mail->AltBody = 'This is a plain-text message body'; 66 | 67 | //Attach an image file 68 | $mail->addAttachment('images/phpmailer_mini.png'); 69 | 70 | //send the message, check for errors 71 | if (!$mail->send()) { 72 | echo "Mailer Error: " . $mail->ErrorInfo; 73 | } else { 74 | echo "Message sent!"; 75 | } 76 | --------------------------------------------------------------------------------