PageRenderTime 962ms queryTime 48ms sortTime 126ms getByIdsTime 170ms findMatchingLines 468ms

100+ results results for 'php md5 repo:izubizarreta/https-bitbucket.org-bityvip' (962 ms)

Not the results you expected?
bookmark.php https://gitlab.com/woxiprogrammers/infinia-wordpress | PHP | 414 lines
                    
1<?php
                    
2/**
                    
88 *
                    
89 * Attempts to retrieve from the cache first based on MD5 hash of arguments. If
                    
90 * that fails, then the query will be built from the arguments and executed. The
                    
129
                    
130	$key = md5( serialize( $r ) );
                    
131	if ( $cache = wp_cache_get( 'get_bookmarks', 'bookmark' ) ) {
                    
199			wp_cache_set( 'get_bookmarks', $cache, 'bookmark' );
                    
200			/** This filter is documented in wp-includes/bookmark.php */
                    
201			return apply_filters( 'get_bookmarks', array(), $r );
                    
290
                    
291	/** This filter is documented in wp-includes/bookmark.php */
                    
292	return apply_filters( 'get_bookmarks', $results, $r );
                    
380	if ( 'edit' == $context ) {
                    
381		/** This filter is documented in wp-includes/post.php */
                    
382		$value = apply_filters( "edit_$field", $value, $bookmark_id );
                    
                
aws_s3.php https://github.com/talmdal/gallery3-contrib.git | PHP | 330 lines
                    
1<?php defined("SYSPATH") or die("No direct script access.");
                    
2
                    
12        if (!self::$_s3) {
                    
13            require_once(MODPATH . "aws_s3/lib/s3.php");
                    
14            S3::setAuth(module::get_var("aws_s3", "access_key"), module::get_var("aws_s3", "secret_key"));
                    
121
                    
122        $item->s3_item_hash = md5($item->relative_path());
                    
123
                    
234    static function validate_access_details($access_key, $secret_key, $bucket_name) {
                    
235        require_once(MODPATH . "aws_s3/lib/s3.php");
                    
236        S3::setAuth($access_key, $secret_key);
                    
                
LoggerDataCollector.php https://gitlab.com/ealexis.t/trends | PHP | 216 lines
                    
1<?php
                    
2
                    
124            if (isset($context['type'], $context['file'], $context['line'], $context['level'])) {
                    
125                $errorId = md5("{$context['type']}/{$context['line']}/{$context['file']}\x00{$log['message']}", true);
                    
126                $silenced = !($context['type'] & $context['level']);
                    
                
Form.php https://github.com/thewiredman/symfony.git | PHP | 457 lines
                    
1<?php
                    
2
                    
28 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
                    
29 * @version    SVN: $Id: Form.php 245 2010-01-31 22:22:39Z flo $
                    
30 */
                    
62        } else {
                    
63            $this->setCsrfSecret(md5(__FILE__.php_uname()));
                    
64        }
                    
242    {
                    
243        return md5($this->csrfSecret.session_id().get_class($this));
                    
244    }
                    
421            switch (strtolower(substr($max, -1))) {
                    
422                // The 'G' modifier is available since PHP 5.1.0
                    
423                case 'g':
                    
                
class.jetpack-xmlrpc-server.php https://gitlab.com/relacilia/cakra | PHP | 429 lines
                    
1<?php
                    
2
                    
211
                    
212		$hmac = hash_hmac( 'md5', json_encode( (object) array(
                    
213			'client_id' => (int) $client_id,
                    
404		// needed?
                    
405		require_once ABSPATH . 'wp-admin/includes/admin.php';
                    
406
                    
406
                    
407		require_once JETPACK__PLUGIN_DIR . 'class.json-api.php';
                    
408		$api = WPCOM_JSON_API::init( $method, $url, $post_body );
                    
409		$api->token_details['user'] = $user_details;
                    
410		require_once JETPACK__PLUGIN_DIR . 'class.json-api-endpoints.php';
                    
411
                    
418		$nonce = wp_generate_password( 10, false );
                    
419		$hmac  = hash_hmac( 'md5', $nonce . $output, $token->secret );
                    
420
                    
                
xxhash.h https://gitlab.com/gasabr/flappy-test | C Header | 164 lines
                    
4   Copyright (C) 2012-2014, Yann Collet.
                    
5   BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
                    
6
                    
51CRC32           0.43 GB/s     9
                    
52MD5-32          0.33 GB/s    10       Ronald L. Rivest
                    
53SHA1-32         0.28 GB/s    10
                    
                
Change.php https://gitlab.com/yousafsyed/easternglamor | PHP | 204 lines
                    
1<?php
                    
2/**
                    
102        if (null === $key) {
                    
103            $key = md5($this->getRandom()->getRandomString(ConfigOptionsListConstants::STORE_KEY_RANDOM_STRING_SIZE));
                    
104        }
                    
111
                    
112        // update database and config.php
                    
113        $this->beginTransaction();
                    
                
SubscribeController.php https://gitlab.com/tiagokalinkeiori/congresso | PHP | 273 lines
                    
1<?php
                    
2
                    
194                                    ->setEmail($data['Email'])
                    
195                                    ->setSalt(md5(uniqid(null, true)));
                    
196                            $factory = $this->get('security.encoder_factory');
                    
                
Message.php https://github.com/Riges/KawaiViewModel.git | PHP | 246 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Message.php 24593 2012-01-05 20:35:02Z matthew $
                    
21 */
                    
24/**
                    
25 * A message envelope that can be passed to Zend_Wildfire_Plugin_FirePhp to be
                    
26 * logged to Firebug instead of a variable.
                    
33 */
                    
34class Zend_Wildfire_Plugin_FirePhp_Message
                    
35{
                    
91        $this->_message = $message;
                    
92        $this->_ruid = md5(microtime().mt_rand());
                    
93    }
                    
                
options.php https://gitlab.com/BenjaminHolm/wp-rocket | PHP | 301 lines
                    
1<?php
                    
2use WP_Rocket\Logger\Logger;
                    
61	// If it's different, clean the domain.
                    
62	if ( md5( wp_json_encode( $oldvalue_diff ) ) !== md5( wp_json_encode( $value_diff ) ) ) {
                    
63		// Purge all cache files.
                    
196
                    
197	// Regenerate advanced-cache.php file.
                    
198	if ( ! empty( $_POST ) && ( ( isset( $oldvalue['do_caching_mobile_files'] ) && ! isset( $value['do_caching_mobile_files'] ) ) || ( ! isset( $oldvalue['do_caching_mobile_files'] ) && isset( $value['do_caching_mobile_files'] ) ) || ( isset( $oldvalue['do_caching_mobile_files'], $value['do_caching_mobile_files'] ) ) && $oldvalue['do_caching_mobile_files'] !== $value['do_caching_mobile_files'] ) ) {
                    
207
                    
208	// Set WP_CACHE constant in wp-config.php.
                    
209	if ( ! defined( 'WP_CACHE' ) || ! WP_CACHE ) {
                    
296
                    
297	$scheme = rocket_extract_url_component( $value, PHP_URL_SCHEME );
                    
298
                    
                
Alignment.php https://gitlab.com/ptisky/API_prestashop | PHP | 409 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Alignment extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable
                    
37{
                    
143	 *		array(
                    
144	 *			'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,
                    
145	 *			'vertical'   => PHPExcel_Style_Alignment::VERTICAL_CENTER,
                    
338	 * @param boolean $pValue
                    
339	 * @return PHPExcel_Style_Alignment
                    
340	 */
                    
                
HashTest.php https://github.com/Exercise/zf2.git | PHP | 189 lines
                    
1<?php
                    
2/**
                    
29// Call Zend_Validate_File_HashTest::main() if this source file is executed directly.
                    
30if (!defined("PHPUnit_MAIN_METHOD")) {
                    
31    define("PHPUnit_MAIN_METHOD", "Zend_Validate_File_HashTest::main");
                    
51 */
                    
52class HashTest extends \PHPUnit_Framework_TestCase
                    
53{
                    
60    {
                    
61        $suite  = new \PHPUnit_Framework_TestSuite("Zend_Validate_File_HashTest");
                    
62        $result = \PHPUnit_TextUI_TestRunner::run($suite);
                    
88        $valuesExpected = array(
                    
89            array(array('ed74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'), true),
                    
90            array(array('4d74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'), false),
                    
90            array(array('4d74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'), false),
                    
91            array(array('4d74c22109fe9f110579f77b053b8bc3', 'ed74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'), true),
                    
92            array(array('1d74c22109fe9f110579f77b053b8bc3', '4d74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'), false),
                    
                
Font.php https://gitlab.com/adamlwalker/generatedata | PHP | 640 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
37{
                    
153			$this->_strikethrough	= NULL;
                    
154			$this->_color			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
                    
155		} else {
                    
155		} else {
                    
156			$this->_color	= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
157		}
                    
                
axel.py https://gitlab.com/132nd-etcher/CouchPotatoServer | Python | 381 lines
                    
9# This module is part of Axel and is released under
                    
10# the MIT License: http://www.opensource.org/licenses/mit-license.php
                    
11#
                    
111    def hash(self, handler):
                    
112        return hashlib.md5(str(handler)).hexdigest()
                    
113
                    
                
Message.php https://gitlab.com/devtoannh/cafe | PHP | 246 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Message.php 23775 2011-03-01 17:25:24Z ralph $
                    
21 */
                    
24/**
                    
25 * A message envelope that can be passed to Zend_Wildfire_Plugin_FirePhp to be
                    
26 * logged to Firebug instead of a variable.
                    
33 */
                    
34class Zend_Wildfire_Plugin_FirePhp_Message
                    
35{
                    
91        $this->_message = $message;
                    
92        $this->_ruid = md5(microtime().mt_rand());
                    
93    }
                    
                
paypal-return-in-web-accept-sp.inc.php https://gitlab.com/Gashler/sg | PHP | 148 lines
                    
1<?php
                    
2/**
                    
54
                    
55				if(!get_transient($transient_rtn = 's2m_rtn_'.md5('s2member_transient_'.$_paypal_s)) && set_transient($transient_rtn, time(), 31556926 * 10))
                    
56				{
                    
89																$paypal['s2member_log'][] = 'Storing Specific Post/Page Tracking Codes into a Transient Queue. These will be processed on-site.';
                    
90																set_transient('s2m_'.md5('s2member_transient_sp_tracking_codes_'.$paypal['txn_id']), $code, 43200);
                    
91															}
                    
                
Alignment.php https://gitlab.com/dmsapiens/physicians | PHP | 409 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Alignment extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable
                    
37{
                    
143	 *		array(
                    
144	 *			'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,
                    
145	 *			'vertical'   => PHPExcel_Style_Alignment::VERTICAL_CENTER,
                    
338	 * @param boolean $pValue
                    
339	 * @return PHPExcel_Style_Alignment
                    
340	 */
                    
                
S3.php https://github.com/EthanBlast/Glam-Star-Life.git | PHP | 452 lines
                    
1<?php
                    
2
                    
5 */
                    
6require_once W3TC_LIB_W3_DIR . '/Cdn/Base.php';
                    
7
                    
8if (!class_exists('S3')) {
                    
9    require_once W3TC_LIB_DIR . '/S3.php';
                    
10}
                    
126            if ($info) {
                    
127                $hash = @md5_file($local_path);
                    
128                $s3_hash = (isset($info['hash']) ? $info['hash'] : '');
                    
171            if ($info) {
                    
172                $hash = md5($data);
                    
173                $s3_hash = (isset($info['hash']) ? $info['hash'] : '');
                    
242        
                    
243        $string = 'test_s3_' . md5(time());
                    
244        
                    
                
CHAP.php https://github.com/nadavkav/MoodleTAO.git | PHP | 464 lines
                    
1<?php
                    
2/*
                    
34
                    
35require_once 'PEAR.php';
                    
36
                    
38* Classes for generating packets for various CHAP Protocols:
                    
39* CHAP-MD5: RFC1994
                    
40* MS-CHAPv1: RFC2433
                    
103        $this->$varname = '';
                    
104        mt_srand(hexdec(substr(md5(microtime()), -8)) & 0x7fffffff);
                    
105        for ($i = 0; $i < $size; $i++) {
                    
122/**
                    
123 * class Crypt_CHAP_MD5
                    
124 *
                    
134     *
                    
135     * CHAP-MD5 uses MD5-Hash for generating the response. The Hash consists
                    
136     * of the chapid, the plaintext password and the challenge.
                    
                
auth_tkt.py https://bitbucket.org/eaviles/gobierno.git | Python | 380 lines
                    
1# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
                    
2# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
                    
3##########################################################################
                    
41try:
                    
42    from hashlib import md5
                    
43except ImportError:
                    
43except ImportError:
                    
44    from md5 import md5
                    
45import Cookie
                    
169    user_data = maybe_encode(user_data)
                    
170    digest0 = md5(
                    
171        encode_ip_timestamp(ip, timestamp) + secret + userid + '\0'
                    
172        + tokens + '\0' + user_data).hexdigest()
                    
173    digest = md5(digest0 + secret).hexdigest()
                    
174    return digest
                    
                
Array.php https://gitlab.com/rsilveira1987/Expresso | PHP | 355 lines
                    
1<?php
                    
2/**
                    
25 */
                    
26require_once 'Zend/Queue/Adapter/AdapterAbstract.php';
                    
27
                    
28/**
                    
29 * Class for using a standard PHP array as a queue
                    
30 *
                    
148             */
                    
149            require_once 'Zend/Queue/Exception.php';
                    
150            throw new Zend_Queue_Exception('Queue does not exist');
                    
174        if (!$this->isExists($queue->getName())) {
                    
175            require_once 'Zend/Queue/Exception.php';
                    
176            throw new Zend_Queue_Exception('Queue does not exist:' . $queue->getName());
                    
182            'body'       => $message,
                    
183            'md5'        => md5($message),
                    
184            'handle'     => null,
                    
                
NormalModule.js https://gitlab.com/limorelv/trelloApp | JavaScript | 322 lines
                    
1/*
                    
2	MIT License http://www.opensource.org/licenses/mit-license.php
                    
3	Author Tobias Koppers @sokra
                    
119NormalModule.prototype.source = function(dependencyTemplates, outputOptions, requestShortener) {
                    
120	var hash = require("crypto").createHash("md5");
                    
121	this.updateHash(hash);
                    
221	if(!this._source) return "";
                    
222	var hash = require("crypto").createHash("md5");
                    
223	hash.update(this._source.source());
                    
                
Array.php https://gitlab.com/yousafsyed/easternglamor | PHP | 355 lines
                    
1<?php
                    
2/**
                    
25 */
                    
26#require_once 'Zend/Queue/Adapter/AdapterAbstract.php';
                    
27
                    
28/**
                    
29 * Class for using a standard PHP array as a queue
                    
30 *
                    
148             */
                    
149            #require_once 'Zend/Queue/Exception.php';
                    
150            throw new Zend_Queue_Exception('Queue does not exist');
                    
174        if (!$this->isExists($queue->getName())) {
                    
175            #require_once 'Zend/Queue/Exception.php';
                    
176            throw new Zend_Queue_Exception('Queue does not exist:' . $queue->getName());
                    
182            'body'       => $message,
                    
183            'md5'        => md5($message),
                    
184            'handle'     => null,
                    
                
Rscf.php https://gitlab.com/endomorphosis/jeffersonsmithmayor | PHP | 359 lines
                    
1<?php
                    
2
                    
9
                    
10require_once W3TC_LIB_W3_DIR . '/Cdn/Base.php';
                    
11require_once W3TC_LIB_CF_DIR . '/cloudfiles.php';
                    
38    /**
                    
39     * PHP5 Constructor
                    
40     *
                    
55    /**
                    
56     * PHP4 Constructor
                    
57     *
                    
181                if ($status >= 200 && $status < 300) {
                    
182                    $hash = @md5_file($local_path);
                    
183
                    
245
                    
246        $string = 'test_rscf_' . md5(time());
                    
247
                    
                
HashTest.php https://github.com/sasezaki/zf2.git | PHP | 181 lines
                    
1<?php
                    
2/**
                    
18 */
                    
19class HashTest extends \PHPUnit_Framework_TestCase
                    
20{
                    
33            array(
                    
34                array('ed74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'),
                    
35                $testFile, true, ''
                    
37            array(
                    
38                array('4d74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'),
                    
39                $testFile, false, 'fileHashDoesNotMatch'
                    
41            array(
                    
42                array('4d74c22109fe9f110579f77b053b8bc3', 'ed74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'),
                    
43                $testFile, true, ''
                    
45            array(
                    
46                array('4d74c22109fe9f110579f77b053b8bc3', '7d74c22109fe9f110579f77b053b8bc3', 'algorithm' => 'md5'),
                    
47                $testFile, false, 'fileHashDoesNotMatch'
                    
                
Users.php https://gitlab.com/Anas7232/Layout-Changes | PHP | 209 lines
                    
1<?php
                    
2/*
                    
166   * Public keys are identified by their fingerprint, which is defined by RFC4716
                    
167   * to be the MD5 digest of the public key.
                    
168   * @param array $optParams Optional parameters.
                    
                
Flickrclient.php https://github.com/ted27/people-aggregator.git | PHP | 172 lines
                    
1<?php
                    
2/** !
                    
12?>
                    
13<?php
                    
14/**
                    
22//api
                    
23require_once "api/PAException/PAException.php";
                    
24require_once "api/Logger/Logger.php";
                    
25//ext
                    
26require_once "Flickr/API.php";
                    
27
                    
32
                    
33    // individual users can override the global API key and secret in their local_config.php files if they wish
                    
34    global $flickr_api_key, $flickr_api_secret, $flickr_auth_type;
                    
57
                    
58  // generate an authentication frob (see flickr_in.php for usage)
                    
59  public function auth_getFrob() {
                    
                
ARC2_SemHTMLParser.php https://gitlab.com/klausmig/CloudSemanticWeb | PHP | 339 lines
                    
1<?php
                    
2/*
                    
26    $this->skip_dupes = false;
                    
27    $this->bnode_prefix = $this->v('bnode_prefix', 'arc'.substr(md5(uniqid(rand())), 0, 4).'b', $this->a);
                    
28    $this->bnode_id = 0;
                    
62    if ($this->skip_dupes) {
                    
63      $h = md5(serialize($t));
                    
64      if (!isset($this->added_triples[$h])) {
                    
                
login.php https://github.com/gregorysmart/MODx.git | PHP | 178 lines
                    
1<?php
                    
2/**
                    
37if (is_array($rt)) {
                    
38    foreach ($rt as $key => $value) {   /* php4 compatible */
                    
39        if ($value !== true) {
                    
130    /* check user password - local authentication */
                    
131    if($user->get('password') != md5($givenPassword)) {
                    
132        return $modx->error->failure($modx->lexicon('login_username_password_incorrect'));
                    
                
bluepay_hosted.php https://gitlab.com/reclamare/mao | PHP | 231 lines
                    
1<?php
                    
2class ModelPaymentBluePayHosted extends Model {
                    
58
                    
59			$void_data['APPROVED_URL'] = HTTP_CATALOG . 'index.php?route=payment/bluepay_hosted/adminCallback';
                    
60			$void_data['DECLINED_URL'] = HTTP_CATALOG . 'index.php?route=payment/bluepay_hosted/adminCallback';
                    
60			$void_data['DECLINED_URL'] = HTTP_CATALOG . 'index.php?route=payment/bluepay_hosted/adminCallback';
                    
61			$void_data['MISSING_URL'] = HTTP_CATALOG . 'index.php?route=payment/bluepay_hosted/adminCallback';
                    
62
                    
68
                    
69			$void_data["TAMPER_PROOF_SEAL"] = md5($tamper_proof_data);
                    
70
                    
98
                    
99			$release_data['APPROVED_URL'] = HTTP_CATALOG . 'index.php?route=payment/bluepay_hosted/adminCallback';
                    
100			$release_data['DECLINED_URL'] = HTTP_CATALOG . 'index.php?route=payment/bluepay_hosted/adminCallback';
                    
100			$release_data['DECLINED_URL'] = HTTP_CATALOG . 'index.php?route=payment/bluepay_hosted/adminCallback';
                    
101			$release_data['MISSING_URL'] = HTTP_CATALOG . 'index.php?route=payment/bluepay_hosted/adminCallback';
                    
102
                    
                
Wincache.php https://github.com/Borluse/ProjetOption.git | PHP | 201 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
20 *
                    
21 * @category   PHPExcel
                    
22 * @package	PHPExcel_CachedObjectStorage
                    
22 * @package	PHPExcel_CachedObjectStorage
                    
23 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_CachedObjectStorage
                    
34 * @copyright  Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_CachedObjectStorage_Wincache extends PHPExcel_CachedObjectStorage_CacheBase implements PHPExcel_CachedObjectStorage_ICache {
                    
37
                    
                
bluepay.php https://gitlab.com/Riky_Lesmana/SugarSweetCakes | PHP | 310 lines
                    
1<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
                    
2
                    
11 * @created 08/24/2011
                    
12 * @license http://www.opensource.org/licenses/mit-license.php
                    
13 * @link https://github.com/calvinfroedge/codeigniter-payments
                    
203	 *
                    
204	 * This function creates a md5 checksum to validate the integrity of the request
                    
205	 * The secret key is never passed directly and is used as a salt to provide a check
                    
208	 * FORMAT:
                    
209	 * md5(SECRET KEY + ACCOUNT_ID + TRANS_TYPE + AMOUNT + MASTER_ID + NAME1 + PAYMENT_ACCOUNT)
                    
210	 * 
                    
219		foreach($tps_contents as $key) $hash .= (isset($params[$key])) ? $params[$key]: '';
                    
220		return bin2hex( md5($hash, TRUE) );		
                    
221	}
                    
                
unpack.php https://gitlab.com/milo-ft/osTicket | PHP | 270 lines
                    
54        # Read the main.inc.php script
                    
55        $bootstrap_php = $this->destination . '/bootstrap.php';
                    
56        $lines = explode("\n", file_get_contents($bootstrap_php));
                    
76        if (!file_put_contents($bootstrap_php, implode("\n", $lines)))
                    
77            die("Unable to configure location of INCLUDE_DIR in bootstrap.php\n");
                    
78    }
                    
115        if (!isset($hashes[$file])) {
                    
116            $md5 = md5_file($file);
                    
117            $sha1 = sha1_file($file);
                    
142     * Copy from source to desination, perhaps recursing up to n folders.
                    
143     * Exclusions are also permitted. If any files match an MD5 sum, they
                    
144     * will be excluded from the copy operation.
                    
206        $pipes = array();
                    
207        $php = proc_open('php', array(
                    
208            0 => array('pipe', 'r'),
                    
                
Message.php https://github.com/balupton/balphp.git | PHP | 402 lines
                    
1<?php
                    
2
                    
10 * @author     ##NAME## <##EMAIL##>
                    
11 * @version    SVN: $Id: Builder.php 6820 2009-11-30 17:27:49Z jwage $
                    
12 */
                    
241			# Hash
                    
242			$hash = md5($Message->send_on.$Message->title.$Message->description.$UserFor_id);
                    
243			if ( $Message->hash != $hash ) {
                    
                
bcmsdh.h https://gitlab.com/SerenityS/slteskt_kernel | C Header | 254 lines
                    
10 * under the terms of the GNU General Public License version 2 (the "GPL"),
                    
11 * available at http://www.broadcom.com/licenses/GPLv2.php, with the
                    
12 * following added to such license:
                    
91
                    
92/* Access SDIO address space (e.g. CCCR) using CMD52 (single-byte interface).
                    
93 *   fn:   function number
                    
113
                    
114/* Synchronous access to device (client) core registers via CMD53 to F1.
                    
115 *   addr: backplane address (i.e. >= regsva from attach)
                    
127
                    
128/* Buffer transfer to/from device (client) core via cmd53.
                    
129 *   fn:       function number
                    
160
                    
161/* Read/write to memory block (F1, no FIFO) via CMD53 (sync only).
                    
162 *   rw:       read or write (0/1)
                    
                
Array.php https://github.com/skoop/Gesichtbuch.git | PHP | 355 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Array.php 6352 2010-08-16 15:02:45Z tpater $
                    
21 */
                    
25 */
                    
26// require_once 'Zend/Queue/Adapter/AdapterAbstract.php';
                    
27
                    
28/**
                    
29 * Class for using a standard PHP array as a queue
                    
30 *
                    
148             */
                    
149            // require_once 'Zend/Queue/Exception.php';
                    
150            throw new Zend_Queue_Exception('Queue does not exist');
                    
182            'body'       => $message,
                    
183            'md5'        => md5($message),
                    
184            'handle'     => null,
                    
                
sitemailer_.php https://gitlab.com/nvtdn2006/azora | PHP | 384 lines
                    
1<?php
                    
2class SiteMailer
                    
27		$cryptographer = Factory::getCryptographer();
                    
28		$this->randomHash = $cryptographer->MD5(date('r', time()));
                    
29		$this->fromMail = $config['PRMSConfig']->noreply_mail;  
                    
52		$this->headers .= "MIME-Version: 1.0\r\n";		
                    
53		//$this->headers .= "Content-Type: multipart/mixed; boundary=\"PHP-mixed-" . $this->randomHash . "\"\r\n";
                    
54		$this->headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
                    
90			{
                    
91				$this->msgBody .= "\r\n--PHP-mixed-" . $this->randomHash . "--";
                    
92				$this->msgBody .= $this->attachment;				
                    
92				$this->msgBody .= $this->attachment;				
                    
93				$this->msgBody .= "\r\n--PHP-mixed-" . $this->randomHash . "--";
                    
94			}*/		
                    
156	private function sendActivationToCustomer($property) {
                    
157		/*$htmlCT = "--PHP-alt-" . $this->randomHash . "\r\n";
                    
158		$htmlCT .= 'Content-Type: text/html; charset="iso-8859-1"' . "\r\n";
                    
                
Bootstrap.php https://bitbucket.org/Shcoder/funny.git | PHP | 319 lines
                    
1<?php
                    
2/**
                    
5 * @copyright Copyright &copy; Christoffer Niska 2011-
                    
6 * @license http://www.opensource.org/licenses/bsd-license.php New BSD License
                    
7 * @version 2.0.2
                    
288		{
                    
289			$key = __CLASS__.'.'.md5($name.$selector.serialize($options));
                    
290			$options = !empty($options) ? CJavaScript::encode($options) : '';
                    
                
Message.php https://github.com/basdog22/Qool.git | PHP | 246 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Message.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
24/**
                    
25 * A message envelope that can be passed to Zend_Wildfire_Plugin_FirePhp to be
                    
26 * logged to Firebug instead of a variable.
                    
33 */
                    
34class Zend_Wildfire_Plugin_FirePhp_Message
                    
35{
                    
91        $this->_message = $message;
                    
92        $this->_ruid = md5(microtime().mt_rand());
                    
93    }
                    
                
Bootstrap.php https://gitlab.com/cyrilchiu/gw2pins | PHP | 319 lines
                    
1<?php
                    
2/**
                    
5 * @copyright Copyright &copy; Christoffer Niska 2011-
                    
6 * @license http://www.opensource.org/licenses/bsd-license.php New BSD License
                    
7 * @version 2.0.3
                    
288		{
                    
289			$key = __CLASS__.'.'.md5($name.$selector.serialize($options));
                    
290			$options = !empty($options) ? CJavaScript::encode($options) : '';
                    
                
Array.php https://github.com/FranckErnewein/citron.git | PHP | 355 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Array.php 20096 2010-01-06 02:05:09Z bkarwin $
                    
21 */
                    
25 */
                    
26// require_once 'Zend/Queue/Adapter/AdapterAbstract.php';
                    
27
                    
28/**
                    
29 * Class for using a standard PHP array as a queue
                    
30 *
                    
148             */
                    
149            // require_once 'Zend/Queue/Exception.php';
                    
150            throw new Zend_Queue_Exception('Queue does not exist');
                    
182            'body'       => $message,
                    
183            'md5'        => md5($message),
                    
184            'handle'     => null,
                    
                
class-wpb-map.php https://gitlab.com/oxidigitaluser/liguelista | PHP | 563 lines
                    
1<?php
                    
2/**
                    
12 * This class maps shortcodes settings to VC editors. You can manage add new shortcodes or manage default shortcodes
                    
13 * mapped in config/map.php. For developers it is possible to use API functions to add update settings attributes.
                    
14 *
                    
14 *
                    
15 * @see config/map.php
                    
16 * @see include/helpers/helpers_api.php
                    
126	 * You need to shortcode's tag and  settings to map correctly.
                    
127	 * Default shortcodes are mapped in config/map.php file.
                    
128	 * The best way is to call this method with "init" action callback function of WP.
                    
217							}
                    
218							$values['_category_ids'][] = md5( $c ); // array_search($category, self::$categories);
                    
219						}
                    
223						}
                    
224						$values['_category_ids'][] = md5( $categories ); // array_search($category, self::$categories);
                    
225					}
                    
                
class-wc-admin-profile.php https://gitlab.com/haque.mdmanzurul/barongbarong | PHP | 304 lines
                    
156					<tr>
                    
157						<th><label for="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $field['label'] ); ?></label></th>
                    
158						<td>
                    
158						<td>
                    
159							<input type="text" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( get_user_meta( $user->ID, $key, true ) ); ?>" class="regular-text" /><br/>
                    
160							<span class="description"><?php echo wp_kses_post( $field['description'] ); ?></span>
                    
210									<input name="woocommerce_generate_api_key" type="checkbox" id="woocommerce_generate_api_key" value="0" />
                    
211									<span class="description"><?php _e( 'Generate API Key', 'woocommerce' ); ?></span>
                    
212								<?php else : ?>
                    
212								<?php else : ?>
                    
213									<strong><?php _e( 'Consumer Key:', 'woocommerce' ); ?>&nbsp;</strong><code id="woocommerce_api_consumer_key"><?php echo $user->woocommerce_api_consumer_key ?></code><br/>
                    
214									<strong><?php _e( 'Consumer Secret:', 'woocommerce' ); ?>&nbsp;</strong><code id="woocommerce_api_consumer_secret"><?php echo $user->woocommerce_api_consumer_secret; ?></code><br/>
                    
214									<strong><?php _e( 'Consumer Secret:', 'woocommerce' ); ?>&nbsp;</strong><code id="woocommerce_api_consumer_secret"><?php echo $user->woocommerce_api_consumer_secret; ?></code><br/>
                    
215									<strong><?php _e( 'Permissions:', 'woocommerce' ); ?>&nbsp;</strong><span id="woocommerce_api_key_permissions"><select name="woocommerce_api_key_permissions" id="woocommerce_api_key_permissions"><?php
                    
216										foreach ( $permissions as $permission_key => $permission_name ) { echo '<option value="' . esc_attr( $permission_key ) . '" '.selected($permission_key, $user->woocommerce_api_key_permissions, false).'>'.esc_html( $permission_name ) . '</option>';} ?>
                    
                
Array.php https://github.com/robeendey/ce.git | PHP | 354 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Array.php 18701 2009-10-26 13:03:47Z matthew $
                    
21 */
                    
25 */
                    
26// require_once 'Zend/Queue/Adapter/AdapterAbstract.php';
                    
27
                    
28/**
                    
29 * Class for using a standard PHP array as a queue
                    
30 *
                    
148             */
                    
149            // require_once 'Zend/Queue/Exception.php';
                    
150            throw new Zend_Queue_Exception('Queue does not exist');
                    
182            'body'       => $message,
                    
183            'md5'        => md5($message),
                    
184            'handle'     => null,
                    
                
Controller.php https://github.com/imagesdesmaths/idm.git | PHP | 334 lines
                    
1<?php
                    
2/**
                    
150
                    
151        $currentUrl = 'index.php';
                    
152
                    
166     * @param string $login user name
                    
167     * @param string $password md5 password
                    
168     * @param bool $rememberMe Remember me?
                    
                
l10n_client.php https://github.com/zcopley/gallery3.git | PHP | 323 lines
                    
1<?php defined("SYSPATH") or die("No direct script access.");
                    
2/**
                    
31  static function client_token() {
                    
32    return md5("l10n_client_client_token" . access::private_key());
                    
33  }
                    
49    $api_key = $api_key == null ? l10n_client::api_key() : $api_key;
                    
50    return md5($api_key . $payload . l10n_client::client_token());
                    
51  }
                    
194    //   uid = <l10n server user id>
                    
195    //   signature = md5(user_api_key($uid, $client_token) . $data . $client_token))
                    
196    //   data = // JSON payload
                    
                
mail.php https://gitlab.com/shapcy/opencart | PHP | 427 lines
                    
103		$header .= 'Return-Path: ' . $this->from . PHP_EOL;
                    
104		$header .= 'X-Mailer: PHP/' . phpversion() . PHP_EOL;
                    
105		$header .= 'Content-Type: multipart/related; boundary="' . $boundary . '"' . PHP_EOL . PHP_EOL;
                    
113			$message  = '--' . $boundary . PHP_EOL;
                    
114			$message .= 'Content-Type: multipart/alternative; boundary="' . $boundary . '_alt"' . PHP_EOL . PHP_EOL;
                    
115			$message .= '--' . $boundary . '_alt' . PHP_EOL;
                    
116			$message .= 'Content-Type: text/plain; charset="utf-8"' . PHP_EOL;
                    
117			$message .= 'Content-Transfer-Encoding: 8bit' . PHP_EOL . PHP_EOL;
                    
118
                    
126			$message .= 'Content-Type: text/html; charset="utf-8"' . PHP_EOL;
                    
127			$message .= 'Content-Transfer-Encoding: 8bit' . PHP_EOL . PHP_EOL;
                    
128			$message .= $this->html . PHP_EOL;
                    
144				$message .= 'Content-ID: <' . basename(urlencode($attachment)) . '>' . PHP_EOL;
                    
145				$message .= 'X-Attachment-Id: ' . basename(urlencode($attachment)) . PHP_EOL . PHP_EOL;
                    
146				$message .= chunk_split(base64_encode($content));
                    
                
Border.php https://github.com/okbutton/ispCP-distributed.git | PHP | 428 lines
                    
37/** PHPExcel_Style_Color */
                    
38require_once PHPEXCEL_ROOT . 'PHPExcel/Style/Color.php';
                    
39
                    
40/** PHPExcel_IComparable */
                    
41require_once PHPEXCEL_ROOT . 'PHPExcel/IComparable.php';
                    
42
                    
48 * @package    PHPExcel_Style
                    
49 * @copyright  Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
50 */
                    
50 */
                    
51class PHPExcel_Style_Border implements PHPExcel_IComparable
                    
52{
                    
113		$this->_borderStyle			= PHPExcel_Style_Border::BORDER_NONE;
                    
114		$this->_color			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
                    
115
                    
                
langimport.php https://github.com/dhamma-dev/SEA.git | PHP | 387 lines
                    
85                    $a->dest = $CFG->dataroot.'/lang';
                    
86                    print_error($cd->get_error(), 'error', 'langimport.php', $a);
                    
87                } else {
                    
146    }
                    
147    $md5array = array();    // (string)langcode => (string)md5
                    
148    foreach ($availablelangs as $alang) {
                    
162
                    
163        if (file_exists($dest1.'/langconfig.php') || file_exists($dest2.'/langconfig.php')){
                    
164            $updateablelangs[] = $clang;
                    
358    global $CFG;
                    
359    $md5file = $CFG->dataroot.'/lang/'.$lang.'/'.$lang.'.md5';
                    
360    if (file_exists($md5file)){
                    
360    if (file_exists($md5file)){
                    
361        return (file_get_contents($md5file) == $md5check);
                    
362    }
                    
                
formdata.php https://github.com/skamster/Peta.git | PHP | 286 lines
                    
1<?php
                    
2
                    
190			case "captcha":
                    
191				if($_POST['formdata'][$i] != md5($_POST['formdata'][$captcha_input_field])) {
                    
192					$ausgabe .= $t['contact']['invalid_captcha'] ."<br />";
                    
                
Fill.php https://gitlab.com/devtoannh/cafe | PHP | 409 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Fill implements PHPExcel_IComparable
                    
37{
                    
129		$this->_startColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE, $isSupervisor, $isConditional);
                    
130		$this->_endColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
                    
131
                    
141	 *
                    
142	 * @param PHPExcel_Style $parent
                    
143	 * @return PHPExcel_Style_Fill
                    
                
profile.php https://gitlab.com/klausmig/CloudSemanticWeb | PHP | 237 lines
                    
1<?php require_once (ROOT . DS . 'application' . DS . 'views' . DS . 'activity_templates.php'); ?>
                    
2<script type="text/javascript" src="static/js/profile.js"></script>
                    
8filterFollowers(<?php echo $_GET['id']; ?>,'');
                    
9getUserStream(<?php echo $_GET['id']; ?>,'','');
                    
10
                    
21            <?php if ($email): ?>
                    
22                <img src="http://www.gravatar.com/avatar/<?php echo md5(strtolower(trim($email))); ?>?d=retro&amp;r=g" height="50" width="50" class="avatar" />
                    
23            <?php endif; ?>
                    
28		            <span class="r_prop r_name" itemprop="name"><?php echo trim($profile->username);?></span>
                    
29		            <meta itemprop="description" content="<?php echo trim($profile->description);?>" />
                    
30		            <meta itemprop="image" content="http://slidewiki.org/?url=ajax/getAvatarSrc&id=<?php echo trim($profile->id);?>" />
                    
47                    <a class="btn small danger" onclick="follow($(this),'user',<?php echo $_GET['id'];?>)">Unfollow user</a>
                    
48                <?php endif; ?>
                    
49
                    
54                <?php if (($user['is_authorized'] && $_GET['id'] != $user['id'])): ?>
                    
55                    <a  class="btn small " onclick="sendMsgDialog(<?php echo $_GET['id'];?>,'<?php echo $profile->username?>')"> <i class="icon-edit"></i> Write message</a>
                    
56                <?php endif; ?>	                
                    
                
php-crypt_r.cpp https://gitlab.com/iranjith4/hhvm | C++ | 381 lines
                    
175
                    
176  if (strncpy_s(passwd + MD5_MAGIC_LEN, MD5_HASH_MAX_LEN - MD5_MAGIC_LEN, sp, sl + 1) != 0) {
                    
177    goto _destroyCtx1;
                    
305  /* Then our magic string */
                    
306  PHP_MD5Update(&ctx, (const unsigned char *)MD5_MAGIC, MD5_MAGIC_LEN);
                    
307
                    
314  PHP_MD5Update(&ctx1, (const unsigned char *)sp, sl);
                    
315  PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl);
                    
316  PHP_MD5Final(final, &ctx1);
                    
318  for (pl = pwl; pl > 0; pl -= 16)
                    
319    PHP_MD5Update(&ctx, final, (unsigned int)(pl > 16 ? 16 : pl));
                    
320
                    
348    else
                    
349      PHP_MD5Update(&ctx1, final, 16);
                    
350
                    
                
UserXMLParser.inc.php https://github.com/mcrider/pkpUpgradeTestSuite.git | PHP | 382 lines
                    
1<?php
                    
2
                    
3/**
                    
4 * UserXMLParser.inc.php
                    
5 *
                    
13 *
                    
14 * $Id: UserXMLParser.inc.php,v 1.4 2005/08/04 21:15:27 alec Exp $
                    
15 */
                    
86								$encrypted = $attrib->getAttribute('encrypted');
                    
87								if (isset($encrypted) && $encrypted == 'md5') {
                    
88									$newUser->setPassword($attrib->getValue());
                    
                
Array.php https://github.com/meritt/zf.git | PHP | 355 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Array.php 23775 2011-03-01 17:25:24Z ralph $
                    
21 */
                    
25 */
                    
26// require_once 'Zend/Queue/Adapter/AdapterAbstract.php';
                    
27
                    
28/**
                    
29 * Class for using a standard PHP array as a queue
                    
30 *
                    
148             */
                    
149            // require_once 'Zend/Queue/Exception.php';
                    
150            throw new Zend_Queue_Exception('Queue does not exist');
                    
182            'body'       => $message,
                    
183            'md5'        => md5($message),
                    
184            'handle'     => null,
                    
                
session.php https://github.com/mathieu/fusionforge.git | PHP | 552 lines
                    
149
                    
150	//  Try to get the users from the database using user_id and (MD5) user_pw
                    
151	$res = db_query("
                    
157	if (!$res || db_numrows($res) < 1) {
                    
158		// No user whose MD5 passwd matches the MD5 of the provided passwd
                    
159		// Selecting by user_name only
                    
167		} else {
                    
168			// There is a user with the provided user_name, but the MD5 passwds do not match
                    
169			// We'll have to try checking the (crypt) unix_pw
                    
181			$res = db_query ("UPDATE users
                    
182				SET user_pw='" . md5($passwd) . "'
                    
183				WHERE user_id='".$usr['user_id']."'");
                    
491//TODO - this should be generalized and used for pre.php, squal_pre.php, 
                    
492//SOAP, forum_gateway.php, tracker_gateway.php, etc to 
                    
493//setup languages
                    
                
wp-background-process.php https://gitlab.com/campus-academy/krowkaramel | PHP | 503 lines
                    
1<?php // @codingStandardsIgnoreLine.
                    
2/**
                    
146	protected function generate_key( $length = 64 ) {
                    
147		$unique  = md5( microtime() . rand() );
                    
148		$prepend = $this->identifier . '_batch_';
                    
                
file2.kvdriver.php git://github.com/jelix/jelix.git | PHP | 292 lines
                    
1<?php
                    
2/**
                    
187
                    
188                $md5 = md5($key);
                    
189                $subdir = $md5[0].$md5[1];
                    
195                // write data to cache
                    
196                $fn = $this->dir.'/'.$subdir.'/'.$md5;
                    
197                if ($f = @gzopen($fn.'.tmp', 'w')) {
                    
232        // the name of the file
                    
233        $md5 = md5($key);
                    
234        $subdir = $md5[0].$md5[1];
                    
235
                    
236        $fn = $this->dir.'/'.$subdir.'/'.$md5;
                    
237
                    
274        // the name of the file
                    
275        $md5 = md5($key);
                    
276        $subdir = $md5[0].$md5[1];
                    
                
PDO.php https://gitlab.com/wuhang2003/rainloop-webmail | PHP | 333 lines
                    
1<?php
                    
2
                    
273
                    
274        return '"' . md5($cardData) . '"';
                    
275
                    
310
                    
311        return '"' . md5($cardData) . '"';
                    
312
                    
                
EDD_SL_Plugin_Updater.php https://gitlab.com/lamovible/grand-regis | PHP | 337 lines
                    
1<?php if ( ! defined( 'ABSPATH' ) ) exit;
                    
2
                    
32        $this->name     = plugin_basename( $_plugin_file );
                    
33        $this->slug     = basename( $_plugin_file, '.php' );
                    
34        $this->version  = $_api_data['version'];
                    
61     * It is reassembled from parts of the native WordPress plugin update code.
                    
62     * See wp-includes/update.php line 121 for the original wp_update_plugins() function.
                    
63     *
                    
76
                    
77        if( 'plugins.php' == $pagenow && is_multisite() ) {
                    
78            return $_transient_data;
                    
131
                    
132            $cache_key    = md5( 'edd_plugin_' .sanitize_key( $this->name ) . '_version_info' );
                    
133            $version_info = get_transient( $cache_key );
                    
172
                    
173            $changelog_link = self_admin_url( 'index.php?edd_sl_action=view_plugin_changelog&plugin=' . $this->name . '&slug=' . $this->slug . '&TB_iframe=true&width=772&height=911' );
                    
174
                    
                
admin.php https://gitlab.com/Poorchop/Jirafeau | PHP | 304 lines
                    
24require (JIRAFEAU_ROOT . 'lib/functions.php');
                    
25require (JIRAFEAU_ROOT . 'lib/lang.php');
                    
26
                    
28if (file_exists (JIRAFEAU_ROOT . 'install.php')
                    
29    && !file_exists (JIRAFEAU_ROOT . 'lib/config.local.php'))
                    
30{
                    
80               t('Wrong password.') . '</p></div>';
                    
81          require (JIRAFEAU_ROOT.'lib/template/footer.php');
                    
82          exit;
                    
146          require (JIRAFEAU_ROOT . 'lib/template/header.php');
                    
147          ?><h2><?php echo t('Admin interface'); ?></h2><?php
                    
148          ?><h2>(version <?php echo JIRAFEAU_VERSION ?>)</h2><?php
                    
152          <table>
                    
153          <form action = "<?php echo basename(__FILE__); ?>" method = "post">
                    
154          <tr>
                    
                
ps_csv.inc http://phpshop.googlecode.com/svn/trunk/ | PHP | 328 lines
                    
1<?php
                    
2/*
                    
234          else { // Category does not exist - create it
                    
235            $hash_secret="PHPShopIsCool";
                    
236            $category_id = md5(uniqid($hash_secret));
                    
                
logs.php https://gitlab.com/phamngsinh/baitaplon_sinhvien | PHP | 336 lines
                    
1<?php
                    
2
                    
24$sql = "SELECT SQL_CALC_FOUND_ROWS * FROM `" . $db_config['prefix'] . "_logs` WHERE `id`!=0";
                    
25$base_url = NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&" . NV_OP_VARIABLE . "=" . $op;
                    
26
                    
39	$checksess = filter_text_input( 'checksess', 'get', '', 1 );
                    
40	if ( $checksess != md5 ( "siteinfo_" . session_id() . "_" . $admin_info['userid'] ) )
                    
41	{
                    
42		nv_insert_logs( NV_LANG_DATA, $module_name, sprintf ( $lang_module['filter_check_log'], $op ), $admin_info['username'] . " - " . $admin_info['userid'], 0 );
                    
43		Header( "Location: " . NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&" . NV_OP_VARIABLE . "=" . $op );
                    
44		exit();
                    
276$xtpl->assign( 'OP', $op );
                    
277$xtpl->assign( 'checksess', md5 ( "siteinfo_" . session_id() . "_" . $admin_info['userid'] ) );
                    
278$xtpl->assign( 'URL_DEL', $base_url . "&" . NV_OP_VARIABLE . "=logs_del" );
                    
278$xtpl->assign( 'URL_DEL', $base_url . "&" . NV_OP_VARIABLE . "=logs_del" );
                    
279$xtpl->assign( 'URL_CANCEL', NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&" . NV_OP_VARIABLE . "=" . $op );
                    
280$xtpl->assign( 'DISABLE', $disabled );
                    
                
emogrifier.php https://gitlab.com/endomorphosis/OLAAaction | PHP | 228 lines
                    
1<?php defined('_JEXEC') or die('Restricted access'); ?>
                    
2<?php
                    
20    2010-06-16  Added static caching for less processing overhead in situations where multiple emogrification takes place
                    
21    2010-07-26  Fixed bug where '0' values were getting discarded because of php's empty() function... Thanks Scott!
                    
22    2010-09-03  Added checks to invisible node removal to ensure that we don't try to remove non-existent child nodes of parents that have already been deleted
                    
83        static $csscache = array();
                    
84        $csskey = md5($css);
                    
85        if (!isset($csscache[$csskey])) {
                    
159        static $selectorcache = array();
                    
160        $selectorkey = md5($selector);
                    
161        if (!isset($selectorcache[$selectorkey])) {
                    
184        static $xpathcache = array();
                    
185        $xpathkey = md5($css_selector);
                    
186        if (!isset($xpathcache[$xpathkey])) {
                    
                
XmlFileLoader.php https://github.com/thewiredman/symfony.git | PHP | 402 lines
                    
1<?php
                    
2
                    
73
                    
74        $this->container->getParameterBag()->add($xml->parameters->getArgumentsAsPhp('parameter'));
                    
75    }
                    
84            $this->currentDir = dirname($file);
                    
85            $this->import((string) $import['resource'], (Boolean) $import->getAttributeAsPhp('ignore-errors'));
                    
86        }
                    
112                $method = 'set'.str_replace('-', '', $key);
                    
113                $definition->$method((string) $service->getAttributeAsPhp($key));
                    
114            }
                    
120
                    
121        $definition->setArguments($service->getArgumentsAsPhp('argument'));
                    
122
                    
137        foreach ($service->call as $call) {
                    
138            $definition->addMethodCall((string) $call['method'], $call->getArgumentsAsPhp('argument'));
                    
139        }
                    
                
Borders.php https://gitlab.com/Japang-Jawara/jawara-penilaian | PHP | 411 lines
                    
1<?php
                    
2
                    
2
                    
3namespace PhpOffice\PhpSpreadsheet\Style;
                    
4
                    
4
                    
5use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException;
                    
6
                    
291        if (!$this->isSupervisor) {
                    
292            throw new PhpSpreadsheetException('Can only get pseudo-border for supervisor.');
                    
293        }
                    
305        if (!$this->isSupervisor) {
                    
306            throw new PhpSpreadsheetException('Can only get pseudo-border for supervisor.');
                    
307        }
                    
319        if (!$this->isSupervisor) {
                    
320            throw new PhpSpreadsheetException('Can only get pseudo-border for supervisor.');
                    
321        }
                    
                
rss.php https://github.com/cybotech/oscommerce2.git | PHP | 233 lines
                    
1<?php
                    
2/* 
                    
5
                    
6 Simple yet powerfull PHP class to parse RSS files.
                    
7
                    
31* lastRSS
                    
32* Simple yet powerfull PHP class to parse RSS files.
                    
33*/
                    
58        if ($this->cache_dir != '') {
                    
59            $cache_file = $this->cache_dir . '/rss_' . md5($rss_url) . '.cache';
                    
60            $timedif = @(time() - filemtime($cache_file));
                    
                
upgrade-2.0.0.php https://gitlab.com/woxiprogrammers/infinia-wordpress | PHP | 279 lines
                    
1<?php
                    
2function icl_upgrade_2_0_0_steps($step, $stepper){
                    
90						list($md5, $links_fixed) = $wpdb->get_row($wpdb->prepare("
                    
91							SELECT md5, links_fixed FROM {$wpdb->prefix}icl_node
                    
92							WHERE nid = %d
                    
95					if(!$md5){
                    
96						$md5 = $TranslationManagement->post_md5($row->element_id);
                    
97					}
                    
108
                    
109							list($rid, $status, $current_md5) = $wpdb->get_row($wpdb->prepare("
                    
110								SELECT c.rid, n.status , c.md5
                    
119							if($rid){
                    
120								if($current_md5 != $md5){
                    
121									$needs_update = 1;
                    
151								'needs_update'          => $needs_update,
                    
152								'md5'                   => $md5,
                    
153								'translation_service'   => $service,
                    
                
class-wp-embed.php https://bitbucket.org/stephenharris/stephenharris.git | PHP | 386 lines
                    
1<?php
                    
2/**
                    
88	jQuery(document).ready(function($){
                    
89		$.get("<?php echo admin_url( 'admin-ajax.php?action=oembed-cache&post=' . $post->ID, 'relative' ); ?>");
                    
90	});
                    
91</script>
                    
92<?php
                    
93	}
                    
195			// Check for a cached result (stored in the post meta)
                    
196			$key_suffix = md5( $url . serialize( $attr ) );
                    
197			$cachekey = '_oembed_' . $key_suffix;
                    
267			if ( $html ) {
                    
268				/** This filter is documented in wp-includes/class-wp-embed.php */
                    
269				return apply_filters( 'embed_oembed_html', $html, $url, $attr, $post_ID );
                    
                
index.html https://github.com/koto/blog-kotowicz-net-examples.git | HTML | 321 lines
                    
7<script src="jquery.json-2.2.min.js"></script>
                    
8<script src="md5.js"></script>
                    
9<script>
                    
23         .find('code.data').text($.toJSON(payload)).end()
                    
24         .attr('id', 'p-' + hex_md5(payload))
                    
25         .appendTo('#tests');
                    
44  function mark(realurl, url, classname) {
                    
45    var hash = hex_md5(url);
                    
46    log($.toJSON(url) + ' is ' + classname);
                    
127          .data('src', payload)
                    
128          .attr('src', 'redirect.php?url=' + encodeURIComponent(payload))
                    
129          .appendTo('#images');
                    
                
SMTPMailer.inc.php https://github.com/mcrider/pkpUpgradeTestSuite.git | PHP | 381 lines
                    
29
                    
30	/** @var $auth string Authentication mechanism (optional) (PLAIN | LOGIN | CRAM-MD5 | DIGEST-MD5) */
                    
31	var $auth;
                    
241				return $this->authenticate_login();
                    
242			case 'CRAM-MD5':
                    
243				return $this->authenticate_cram_md5();
                    
284	function authenticate_cram_md5() {
                    
285		if (!$this->send('AUTH', 'CRAM-MD5'))
                    
286			return false;
                    
288			return false;
                    
289		$authString = $this->username . ' ' . $this->hmac_md5(base64_decode($digest), $this->password);
                    
290		if (!$this->send(base64_encode($authString)))
                    
341
                    
342		$response = md5(md5($a1) . ':' . ($challenge['nonce'] . ':' . $nc . ':' . $cnonce. ':' . $qop . ':' . md5($a2)));
                    
343
                    
                
DataValidation.php https://gitlab.com/ptisky/API_prestashop | PHP | 472 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
22 * @package    PHPExcel_Cell
                    
23 * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
33 * @package    PHPExcel_Cell
                    
34 * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
187     * @param  string    $value
                    
188     * @return PHPExcel_Cell_DataValidation
                    
189     */
                    
227     * @param  string    $value
                    
228     * @return PHPExcel_Cell_DataValidation
                    
229     */
                    
                
TrackEmailTest.php https://gitlab.com/e0/X2CRM | PHP | 273 lines
                    
1<?php
                    
2
                    
96        $track->actionId = $action->id;
                    
97        $track->uniqueId = md5(uniqid(rand(), true));
                    
98        $this->assertSaves($track);
                    
158        $track->actionId = $action->id;
                    
159        $track->uniqueId = md5(uniqid(rand(), true));
                    
160        $this->assertSaves($track);
                    
220        $track->actionId = $action->id;
                    
221        $track->uniqueId = md5(uniqid(rand(), true));
                    
222        $this->assertSaves($track);
                    
                
DataValidation.php https://gitlab.com/vanthanhhoh/devlovebook | PHP | 472 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
22 * @package    PHPExcel_Cell
                    
23 * @copyright  Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
33 * @package    PHPExcel_Cell
                    
34 * @copyright  Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
187     * @param  string    $value
                    
188     * @return PHPExcel_Cell_DataValidation
                    
189     */
                    
227     * @param  string    $value
                    
228     * @return PHPExcel_Cell_DataValidation
                    
229     */
                    
                
MkPkg.py https://gitlab.com/envieidoc/Clover | Python | 280 lines
                    
8# distribution. The full text of the license may be found at 
                    
9# http://opensource.org/licenses/bsd-license.php
                    
10#
                    
29from platform import python_version
                    
30import md5
                    
31from time import strftime
                    
196        #
                    
197        # Add Md5Sigature
                    
198        #
                    
198        #
                    
199        DistPkg.Header.Signature = md5.new(open(str(ContentFile), 'rb').read()).hexdigest()
                    
200        #
                    
                
Cookie.php http://marocmall.googlecode.com/svn/trunk/ | PHP | 355 lines
                    
1<?php
                    
2/*
                    
9* It is also available through the world-wide-web at this URL:
                    
10* http://opensource.org/licenses/osl-3.0.php
                    
11* If you did not receive a copy of the license and are unable to
                    
23*  @version  Release: $Revision: 6851 $
                    
24*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25*  International Registered Trademark & Property of PrestaShop SA
                    
65		$this->_expire = isset($expire) ? (int)($expire) : (time() + 1728000);
                    
66		$this->_name = md5($name);
                    
67		$this->_path = trim(__PS_BASE_URI__.$path, '/\\').'/';
                    
282	/**
                    
283	  * Setcookie according to php version
                    
284	  */
                    
296		}
                    
297		if (PHP_VERSION_ID <= 50200) /* PHP version > 5.2.0 */
                    
298			return setcookie($this->_name, $content, $time, $this->_path, $this->_domain, 0);
                    
                
install_check.php https://gitlab.com/phamngsinh/baitaplon_sinhvien | PHP | 314 lines
                    
1<?php
                    
2
                    
18
                    
19$filename = NV_ROOTDIR . '/' . NV_TEMP_DIR . '/' . NV_TEMPNAM_PREFIX . 'auto_' . md5( $global_config['sitekey'] . session_id() ) . '.zip';
                    
20if ( file_exists( $filename ) )
                    
21{
                    
22    require_once NV_ROOTDIR . '/includes/class/pclzip.class.php';
                    
23    $zip = new PclZip( $filename );
                    
26    $overwrite = $nv_Request->get_string( 'overwrite', 'get', '' );
                    
27    if ( $overwrite != md5( $filename . $global_config['sitekey'] . session_id() ) )
                    
28    {
                    
47    {
                    
48        $temp_extract_dir = NV_TEMP_DIR . '/' . md5( $filename . $global_config['sitekey'] . session_id() );
                    
49		
                    
199		$xtpl->assign( 'MODULE_NAME', $module_name );
                    
200		$xtpl->assign( 'CHECKSESS', md5( $filename . $global_config['sitekey'] . session_id() ) );
                    
201		
                    
                
MysqliManager.php https://gitlab.com/tjaafar/SuiteCRM | PHP | 379 lines
                    
1<?php
                    
2if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
                    
45* which generate the necessary SQL. This sql is then passed to PEAR DB classes.
                    
46* The helper class is chosen in DBManagerFactory, which is driven by 'db_type' in 'dbconfig' under config.php.
                    
47*
                    
93
                    
94require_once('include/database/MysqlManager.php');
                    
95
                    
127
                    
128		static $queryMD5 = array();
                    
129
                    
135		$result = $suppress?@mysqli_query($this->database,$sql):mysqli_query($this->database,$sql);
                    
136		$md5 = md5($sql);
                    
137
                    
137
                    
138		if (empty($queryMD5[$md5]))
                    
139			$queryMD5[$md5] = true;
                    
                
class.Cache.inc.php http://flaimo-php.googlecode.com/svn/trunk/ | PHP | 326 lines
                    
1<?php
                    
2/* vim: set expandtab tabstop=4 shiftwidth=4: */
                    
33*
                    
34* Tested with Apache 1.3.24 and PHP 4.2.3
                    
35*
                    
126		//return $filename;
                    
127		return (string) md5($filename);
                    
128	} // end function
                    
                
html.php https://bitbucket.org/selfeky/xclusivescardwebsite.git | PHP | 265 lines
                    
1<?php 
                    
2/**
                    
85		$css->file .= (strpos($css->file, '?') > -1) ? '&amp;' : '?';
                    
86		$css->file .= 'v=' . md5(APP_VERSION . PASSWORD_SALT);		
                    
87		// for the javascript addHeaderItem we need to have a full href available
                    
132		$js->file .= (strpos($js->file, '?') > -1) ? '&amp;' : '?';
                    
133		$js->file .= 'v=' . md5(APP_VERSION . PASSWORD_SALT);
                    
134		
                    
                
update-bridge.php https://gitlab.com/daniel.ritz/update-bridge | PHP | 398 lines
                    
1<?php
                    
2	
                    
81		function loadRewriteRules(){
                    
82			// $this -> rewriteRules[] = Array('search' => '/^@vpl$/', 'replace' => '/content/vpl.php');
                    
83		}
                    
205			move_uploaded_file($file['tmp_name'], $tmppath);
                    
206			$unzippath = sys_get_temp_dir() . '/ota_flash_' . md5(time());
                    
207			mkdir($unzippath);
                    
228			$dir = dirname($path);
                    
229			$flashfilename = '_' . basename($path) . '.ota.php';
                    
230			if(file_exists($dir . '/' . $flashfilename)){
                    
302
                    
303	// Check if we are on the update-bridge.php
                    
304	if($_SERVER['REQUEST_URI'] == '/update-bridge.php'){
                    
304	if($_SERVER['REQUEST_URI'] == '/update-bridge.php'){
                    
305		// We are on update-bridge.php
                    
306		// so let's invoke the update-bridge class
                    
                
imageupload.php https://gitlab.com/haque.mdmanzurul/nga-loyaltymatters | PHP | 287 lines
                    
1<?php
                    
2
                    
68
                    
69    include_once AIU_BASE_PATH . 'includes/fileuploader/fileuploader.class.php';
                    
70
                    
78    // comma separated list of valid extensions
                    
79    $formUid = isset($uid) ? $uid : md5($modx->config['site_url']);
                    
80
                    
81    if (!function_exists('includeFile')) {
                    
82        function includeFile($name, $type = 'config', $defaultName = 'default', $fileType = '.inc.php') {
                    
83            $folder = (substr($type, -1) != 'y') ? $type . 's/' : substr($folder, 0, -1) . 'ies/';
                    
93                } else {
                    
94                    $modx->messageQuit('Default AjaxImageUpload ' . $type . ' file "' . AIU_BASE_PATH . $folder . $defaultName . '.' . $type . '.inc.php" not found. Did you upload all snippet files?');
                    
95                }
                    
106
                    
107    include_once AIU_BASE_PATH . 'includes/PhpThumbFactory/ThumbLib.inc.php';
                    
108    // delete uploaded images
                    
                
odf.php https://bitbucket.org/chamilo/chamilo/ | PHP | 369 lines
                    
1<?php
                    
2require 'zip/PclZipProxy.php';
                    
2require 'zip/PclZipProxy.php';
                    
3require 'zip/PhpZipProxy.php';
                    
4require 'Segment.php';
                    
8 * Templating class for odt file
                    
9 * You need PHP 5.2 at least
                    
10 * You need Zip Extension or PclZip library
                    
14 * SVN Revision - $Rev: 42 $
                    
15 * Id : $Id: odf.php 42 2009-06-17 09:11:57Z neveldo $
                    
16 *
                    
52        if (! class_exists($this->config['ZIP_PROXY'])) {
                    
53            throw new OdfException($this->config['ZIP_PROXY'] . ' class not found - check your php settings');
                    
54        }
                    
68
                    
69        $tmp = tempnam($this->config['PATH_TO_TMP'], md5(uniqid()));
                    
70        copy($filename, $tmp);
                    
                
DataValidation.php https://gitlab.com/dmsapiens/physicians | PHP | 472 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
22 * @package    PHPExcel_Cell
                    
23 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
33 * @package    PHPExcel_Cell
                    
34 * @copyright  Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
187     * @param  string    $value
                    
188     * @return PHPExcel_Cell_DataValidation
                    
189     */
                    
227     * @param  string    $value
                    
228     * @return PHPExcel_Cell_DataValidation
                    
229     */
                    
                
template_header.php https://github.com/azeckoski/az-php-sandbox.git | PHP | 175 lines
                    
1<?php
                    
2// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/template_header.php,v 1.6.4.5 2005/12/09 14:32:37 wurley Exp $
                    
3
                    
9
                    
10include './header.php';
                    
11
                    
12$time = gettimeofday();
                    
13$random_junk = md5(strtotime('now').$time['usec']);
                    
14$url_base = sprintf('server_id=%s&amp;dn=%s',$ldapserver->server_id,$encoded_dn);
                    
19$copy_href = sprintf('copy_form.php?%s',$url_base);
                    
20$intattr_href = sprintf('template_engine.php?%s&amp;show_internal_attrs=true',$url_base);
                    
21$delete_href = sprintf('delete_form.php?%s',$url_base);
                    
138			if ($ldapserver->isAttrBinary($attr)) {
                    
139				$href = sprintf('download_binary_attr.php?server_id=%s&amp;dn=%s&amp;attr=%s',$server_id,$encoded_dn,$attr);
                    
140
                    
                
UUID.php https://github.com/DerDu/AIO-System.git | PHP | 324 lines
                    
1<?php
                    
2/*-
                    
36    const UUID_TIME     = 1;    /* Time based UUID */
                    
37    const UUID_NAME_MD5     = 3;    /* Name based (MD5) UUID */
                    
38    const UUID_RANDOM     = 4;    /* Random UUID */
                    
64        self::UUID_RANDOM => "generateRandom",
                    
65        self::UUID_NAME_MD5 => "generateNameMD5",
                    
66        self::UUID_NAME_SHA1 => "generateNameSHA1"
                    
191    }
                    
192    static private function generateNameMD5($ns, $node) {
                    
193        return self::generateName($ns, $node, "md5",
                    
193        return self::generateName($ns, $node, "md5",
                    
194            self::UUID_NAME_MD5);
                    
195    }
                    
216        $uuid['time_low'] = $time & 0xffffffff;
                    
217        /* Work around PHP 32-bit bit-operation limits */
                    
218        $high = intval($time / 0xffffffff);
                    
                
tags.php https://bitbucket.org/zachisit/zachis.it-m.git | PHP | 383 lines
                    
1<?php
                    
2
                    
3/**
                    
4* Tag PHP class for the WordPress plugin NextGEN Gallery
                    
5* nggallery.lib.php
                    
264		} else {
                    
265			$key = md5(serialize($args));
                    
266			
                    
                
profile.php https://gitlab.com/ivaang94/DB_Proyect | PHP | 311 lines
                    
1<?php
                    
2	/**
                    
6	*/
                    
7	require_once '../boot.php';
                    
8
                    
125						$updated = TRUE;
                    
126						$currentUser['password'] = md5($newPassword);
                    
127					} else {
                    
146
                    
147				if ($currentPassword == md5($password)) {
                    
148					if (!$errors) {
                    
184			<div class="col-xs-12">
                    
185				<?php include 'header.php'; ?>
                    
186			</div>
                    
191			<div class="col-xs-3">
                    
192				<?php include 'sidebar.php'; ?>
                    
193			</div>
                    
                
after-the-deadline.php https://gitlab.com/endomorphosis/falkenstein | PHP | 286 lines
                    
1<?php
                    
2/**
                    
27include( 'after-the-deadline/config-options.php' );
                    
28include( 'after-the-deadline/config-unignore.php' );
                    
29include( 'after-the-deadline/proxy.php' );
                    
90
                    
91	/* kill the spellchecker.. don't need no steenkin PHP spell checker */
                    
92	foreach ( $buttons as $key => $button ) {
                    
123	$init_array['atd_rpc_url']        = admin_url( 'admin-ajax.php?action=proxy_atd&url=' );
                    
124	$init_array['atd_ignore_rpc_url'] = admin_url( 'admin-ajax.php?action=atd_ignore&phrase=' );
                    
125	$init_array['atd_rpc_id']         = 'WPORG-' . md5(get_bloginfo('wpurl'));
                    
151	/* set the RPC URL for AtD */
                    
152	echo "AtD.rpc = " . json_encode( esc_url_raw( admin_url( 'admin-ajax.php?action=proxy_atd&url=' ) ) ) . ";\n";
                    
153
                    
252
                    
253	$pages = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php', 'admin.php', 'profile.php' );
                    
254
                    
                
Archiver.php https://gitlab.com/yasminmostfa/thomas-site | PHP | 277 lines
                    
1<?php
                    
2/**
                    
99
                    
100                $urlHash = substr(md5($row['referer_url']), 0, 10);
                    
101                if (!isset($this->distinctUrls[$urlHash])) {
                    
                
comments.php https://gitlab.com/endomorphosis/jeffersonsmithmayor | PHP | 484 lines
                    
2
                    
3require dirname( __FILE__ ) . '/base.php';
                    
4
                    
217			<div id="cancel-comment-reply-link" style="display:none; float:right;"><a href="#"><?php echo esc_html( __( 'Cancel Reply', 'jetpack' ) ); ?></a></div>
                    
218			<iframe src="<?php echo esc_url( $url ); ?>" allowtransparency="<?php echo $transparent; ?>" style="width:100%; height: <?php echo $height; ?>px;border:0px;" frameBorder="0" scrolling="no" name="jetpack_remote_comment" id="jetpack_remote_comment"></iframe>
                    
219		</div>
                    
220
                    
221		<?php // Below is required for comment reply JS to work ?>
                    
222
                    
299
                    
300	<?php endif; ?>
                    
301
                    
464try {
                    
465	window.parent.location = <?php echo json_encode( $url ); ?>;
                    
466	window.parent.location.reload();
                    
                
cas_user_request.class.php https://bitbucket.org/chamilo/chamilo-app-cas-user-dev/ | PHP | 221 lines
                    
1<?php
                    
2namespace application\cas_user;
                    
14
                    
15require_once dirname(__FILE__) . '/cas_account.class.php';
                    
16
                    
214        $cas_account->set_group('-');
                    
215        $cas_account->set_password(md5(Text :: generate_password()));
                    
216        $cas_account->set_status(CasAccount :: STATUS_ENABLED);
                    
                
String.php https://github.com/pmjones/php-framework-benchmarks.git | PHP | 374 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * Lithium: the most rad php framework
                    
4 *
                    
6 *                Copyright 2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
7 * @license       http://opensource.org/licenses/mit-license.php The MIT License
                    
8 */
                    
62	 * @param string $string String to hash.
                    
63	 * @param string $type Method to use (sha1/sha256/md5, or any method supported
                    
64	 *        by the `hash()` function).
                    
79		}
                    
80		return md5($string);
                    
81	}
                    
                
compat.php https://gitlab.com/campus-academy/krowkaramel | PHP | 489 lines
                    
2/**
                    
3 * WordPress implementation for PHP functions either missing from older PHP versions or not included by default.
                    
4 *
                    
35	if ( 'reset' === $utf8_pcre ) {
                    
36		// phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged -- intentional error generated to detect PCRE/u support.
                    
37		$utf8_pcre = @preg_match( '/^./u', 'a' );
                    
225	 *
                    
226	 * The Hash extension is bundled with PHP by default since PHP 5.1.2.
                    
227	 * However, the extension may be explicitly disabled on select servers.
                    
227	 * However, the extension may be explicitly disabled on select servers.
                    
228	 * As of PHP 7.4.0, the Hash extension is a core PHP extension and can no
                    
229	 * longer be disabled.
                    
303	 * However, the Hash extension may be explicitly disabled on select servers.
                    
304	 * As of PHP 7.4.0, the Hash extension is a core PHP extension and can no
                    
305	 * longer be disabled.
                    
                
sbsdpcmdev.h https://gitlab.com/buktemirlnk/mirrors | C Header | 300 lines
                    
9 * under the terms of the GNU General Public License version 2 (the "GPL"),
                    
10 * available at http://www.broadcom.com/licenses/GPLv2.php, with the
                    
11 * following added to such license:
                    
114	/* counters */
                    
115	uint32 cmd52rd;			/* Cmd52RdCount, 0x110, rev8, SDIO: cmd52 reads */
                    
116	uint32 cmd52wr;			/* Cmd52WrCount, 0x114, rev8, SDIO: cmd52 writes */
                    
116	uint32 cmd52wr;			/* Cmd52WrCount, 0x114, rev8, SDIO: cmd52 writes */
                    
117	uint32 cmd53rd;			/* Cmd53RdCount, 0x118, rev8, SDIO: cmd53 reads */
                    
118	uint32 cmd53wr;			/* Cmd53WrCount, 0x11c, rev8, SDIO: cmd53 writes */
                    
                
contact-dist.php http://simplemodal.googlecode.com/svn/trunk/ | PHP | 203 lines
                    
1<?php
                    
2
                    
9 * Licensed under the MIT license:
                    
10 *   http://www.opensource.org/licenses/mit-license.php
                    
11 */
                    
94function smcf_token($s) {
                    
95	return md5("smcf-" . $s . date("WY"));
                    
96}
                    
130	}
                    
131	$headers .= "X-Mailer: PHP/SimpleModalContactForm";
                    
132
                    
                
index.php https://github.com/agnesrambaud/yacs.git | PHP | 197 lines
                    
50 * By activating the building script ([script]scripts/build.php[/script]), he (or she) will copy reference scripts to a safe place
                    
51 * (scripts/reference). These scripts will be scanned for structured comments (see [script]scripts/phpdoc.php[/script]) and the
                    
52 * related documentation will be generated automatically.
                    
60 * How to define that a script is to be included in the reference set? Simple: put the keyword &arobas;reference
                    
61 * on a single line of the first php comment of the script.
                    
62 *
                    
122// get the page from the php documentation, if any
                    
123include_once 'phpdoc.php';
                    
124$item = PhpDoc::get('index');
                    
183	// validate scripts
                    
184	$context['page_tools'][] = Skin::build_link('scripts/validate.php', i18n::s('Validate PHP syntax'), 'basic');
                    
185
                    
186	// build the reference here
                    
187	$context['page_tools'][] = Skin::build_link('scripts/build.php', i18n::s('Build the software'), 'basic');
                    
188
                    
                
snmp.h https://gitlab.com/mrimp/linaro-toolchains | C Header | 274 lines
                    
179	LINUX_MIB_TCPPREQUEUEDROPPED,		/* TCPPrequeueDropped */
                    
180	LINUX_MIB_TCPHPHITS,			/* TCPHPHits */
                    
181	LINUX_MIB_TCPHPHITSTOUSER,		/* TCPHPHitsToUser */
                    
182	LINUX_MIB_TCPPUREACKS,			/* TCPPureAcks */
                    
183	LINUX_MIB_TCPHPACKS,			/* TCPHPAcks */
                    
184	LINUX_MIB_TCPRENORECOVERY,		/* TCPRenoRecovery */
                    
221	LINUX_MIB_TCPSPURIOUSRTOS,		/* TCPSpuriousRTOs */
                    
222	LINUX_MIB_TCPMD5NOTFOUND,		/* TCPMD5NotFound */
                    
223	LINUX_MIB_TCPMD5UNEXPECTED,		/* TCPMD5Unexpected */
                    
                
util.php http://oregon-caspages.googlecode.com/svn/trunk/ | PHP | 517 lines
                    
1<?php
                    
2include 'editor_conf.php';
                    
25   //echo 'pass = ' . $password . '<br>';
                    
26   $password = md5($password);
                    
27   //echo $password;
                    
182      $link = connect_db();
                    
183      $new_pass = md5($new_pass);
                    
184      $user_list[$user_name] = $new_pass;
                    
195
                    
196$index_page = '<?php
                    
197include "../../../editor_conf.php";
                    
200                <div id="global_nav">
                    
201                        <?php include $basepath."global_nav.php";?>
                    
202                </div>
                    
203                <div id="main_content">
                    
204                        <?php echo file_get_contents("content.html");?>
                    
205                </div>
                    
                
Manager.php https://gitlab.com/wuhang2003/rainloop-webmail | PHP | 770 lines
                    
1<?php
                    
2
                    
123		if (\preg_match('/^[a-z0-9\-]+$/', $sName) &&
                    
124			\file_exists(APP_PLUGINS_PATH.$sName.'/index.php'))
                    
125		{
                    
129			{
                    
130				include APP_PLUGINS_PATH.$sName.'/index.php';
                    
131			}
                    
170				if (\preg_match('/^[a-z0-9\-]+$/', $sName) &&
                    
171					\file_exists($sPathName.'/index.php'))
                    
172				{
                    
215	{
                    
216		$sResult = \md5(APP_VERSION);
                    
217		foreach ($this->aPlugins as $oPlugin)
                    
218		{
                    
219			$sResult = \md5($sResult.$oPlugin->Path().$oPlugin->Hash());
                    
220		}
                    
                
class-wp-embed.php https://gitlab.com/haque.mdmanzurul/barongbarong | PHP | 334 lines
                    
1<?php
                    
2/**
                    
81	jQuery(document).ready(function($){
                    
82		$.get("<?php echo admin_url( 'admin-ajax.php?action=oembed-cache&post=' . $post->ID, 'relative' ); ?>");
                    
83	});
                    
85</script>
                    
86<?php
                    
87	}
                    
184			// Check for a cached result (stored in the post meta)
                    
185			$cachekey = '_oembed_' . md5( $url . serialize( $attr ) );
                    
186			if ( $this->usecache ) {
                    
228			if ( $html ) {
                    
229				/** This filter is documented in wp-includes/class-wp-embed.php */
                    
230				return apply_filters( 'embed_oembed_html', $html, $url, $attr, $post_ID );
                    
                
adodb-session.php https://github.com/CORE-POS/IS4C.git | PHP | 440 lines
                    
1<?php
                    
2/*
                    
13
                    
14 This file provides PHP4 session management using the ADODB database
                    
15wrapper library.
                    
19
                    
20	include('adodb.inc.php');
                    
21	include('adodb-session.php');
                    
30	include('adodb.inc.php');
                    
31	include('adodb-session.php');
                    
32	adodb_sess_open(false,false,false);
                    
72  3. Recommended is PHP 4.1.0 or later. There are documented
                    
73	 session bugs in earlier versions of PHP.
                    
74
                    
112 /*
                    
113	Thanks Joe Li. See http://phplens.com/lens/lensforum/msgs.php?id=11487&x=1
                    
114*/
                    
                
de_DE.php https://github.com/tdf/cms-code.git | PHP | 194 lines
                    
1<?php
                    
2global $lang;
                    
22$lang['de_DE']['Downloadpage']['BITTORRENT']='Download über BitTorrent';
                    
23$lang['de_DE']['Downloadpage']['DETAILLINK']='Details anzeigen (md5sum,…)';
                    
24$lang['de_DE']['Downloadpage']['DLSDK']     ='Laden Sie das SDK herunter, um Erweiterungen und externe Werkzeuge zu entwickeln';
                    
48$lang['de_DE']['DownloadButton.ss']['DownloadsInfoLink'] = 'Info';
                    
49$lang['de_DE']['DownloadButton.ss']['DownloadsInfoTitle'] = 'Sehen Sie sich die md5sum und die Liste der Download-Mirror für diese Datei an';
                    
50$lang['de_DE']['DownloadSimplePage.ss']['DownloadsInstallTypeFull'] = 'Hauptprogramm';
                    
                
 

Source

Language