forked from agriya/groupdeal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
agriya#2 Change of CamelCase in Files and Folder Name
- Loading branch information
ahsan
committed
Jun 26, 2019
1 parent
6ff3b00
commit 55ab74e
Showing
649 changed files
with
190 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
/** | ||
* AppShell file | ||
* | ||
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org) | ||
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
* | ||
* Licensed under The MIT License | ||
* For full copyright and license information, please see the LICENSE.txt | ||
* Redistributions of files must retain the above copyright notice. | ||
* | ||
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
* @link https://cakephp.org CakePHP(tm) Project | ||
* @since CakePHP(tm) v 2.0 | ||
* @license https://opensource.org/licenses/mit-license.php MIT License | ||
*/ | ||
|
||
App::uses('Shell', 'Console'); | ||
|
||
/** | ||
* Application Shell | ||
* | ||
* Add your application-wide methods in the class below, your shells | ||
* will inherit them. | ||
* | ||
* @package app.Console.Command | ||
*/ | ||
class AppShell extends Shell { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
/** | ||
* | ||
* @version $Id: cron.php 77933 2012-07-13 09:06:39Z arovindhan_144at11 $ | ||
* @copyright 2009 | ||
*/ | ||
class CronShell extends Shell | ||
{ | ||
function main() | ||
{ | ||
// site settings are set in config | ||
App::import('Model', 'Setting'); | ||
$setting_model_obj = new Setting(); | ||
$settings = $setting_model_obj->getKeyValuePairs(); | ||
Configure::write($settings); | ||
App::import('Core', 'ComponentCollection'); | ||
$collection = new ComponentCollection(); | ||
App::import('Component', 'Cron'); | ||
$this->Cron = new CronComponent($collection); | ||
$option = !empty($this->args[0]) ? $this->args[0] : ''; | ||
$this->log('Cron started without any issue.', LOG_DEBUG); | ||
switch ($option) { | ||
case 'update_deal': | ||
$this->Cron->update_deal(); | ||
break; | ||
|
||
case 'currency_conversion': | ||
$this->Cron->currency_conversion(); | ||
break; | ||
|
||
case 'pushMessage': | ||
$this->Cron->pushMessage(); | ||
break; | ||
|
||
default:; | ||
} // switch | ||
|
||
} | ||
} | ||
?> |
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env bash | ||
################################################################################ | ||
# | ||
# Bake is a shell script for running CakePHP bake script | ||
# | ||
# CakePHP(tm) : Rapid Development Framework (https://cakephp.org) | ||
# Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
# | ||
# Licensed under The MIT License | ||
# For full copyright and license information, please see the LICENSE.txt | ||
# Redistributions of files must retain the above copyright notice. | ||
# | ||
# @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
# @link https://cakephp.org CakePHP(tm) Project | ||
# @package app.Console | ||
# @since CakePHP(tm) v 1.2.0.5012 | ||
# @license https://opensource.org/licenses/mit-license.php MIT License | ||
# | ||
################################################################################ | ||
|
||
# Canonicalize by following every symlink of the given name recursively | ||
canonicalize() { | ||
NAME="$1" | ||
if [ -f "$NAME" ] | ||
then | ||
DIR=$(dirname -- "$NAME") | ||
NAME=$(cd -P "$DIR" && pwd -P)/$(basename -- "$NAME") | ||
fi | ||
while [ -h "$NAME" ]; do | ||
DIR=$(dirname -- "$NAME") | ||
SYM=$(readlink "$NAME") | ||
NAME=$(cd "$DIR" && cd $(dirname -- "$SYM") && pwd)/$(basename -- "$SYM") | ||
done | ||
echo "$NAME" | ||
} | ||
|
||
CONSOLE=$(dirname -- "$(canonicalize "$0")") | ||
APP=$(dirname "$CONSOLE") | ||
|
||
exec php -q "$CONSOLE"/cake.php -working "$APP" "$@" | ||
exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | ||
:: | ||
:: Bake is a shell script for running CakePHP bake script | ||
:: | ||
:: CakePHP(tm) : Rapid Development Framework (https://cakephp.org) | ||
:: Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
:: | ||
:: Licensed under The MIT License | ||
:: Redistributions of files must retain the above copyright notice. | ||
:: | ||
:: @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
:: @link https://cakephp.org CakePHP(tm) Project | ||
:: @package app.Console | ||
:: @since CakePHP(tm) v 2.0 | ||
:: @license https://opensource.org/licenses/mit-license.php MIT License | ||
:: | ||
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | ||
|
||
:: In order for this script to work as intended, the cake\console\ folder must be in your PATH | ||
|
||
@echo. | ||
@echo off | ||
|
||
SET app=%0 | ||
SET lib=%~dp0 | ||
|
||
php -q "%lib%cake.php" -working "%CD% " %* | ||
|
||
echo. | ||
|
||
exit /B %ERRORLEVEL% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/usr/bin/php -q | ||
<?php | ||
/** | ||
* Command-line code generation utility to automate programmer chores. | ||
* | ||
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org) | ||
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
* | ||
* Licensed under The MIT License | ||
* For full copyright and license information, please see the LICENSE.txt | ||
* Redistributions of files must retain the above copyright notice. | ||
* | ||
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
* @link https://cakephp.org CakePHP(tm) Project | ||
* @package app.Console | ||
* @since CakePHP(tm) v 2.0 | ||
* @license https://opensource.org/licenses/mit-license.php MIT License | ||
*/ | ||
|
||
if (!defined('DS')) { | ||
define('DS', DIRECTORY_SEPARATOR); | ||
} | ||
|
||
$dispatcher = 'Cake' . DS . 'Console' . DS . 'ShellDispatcher.php'; | ||
|
||
if (function_exists('ini_set')) { | ||
$root = dirname(dirname(dirname(__FILE__))); | ||
$appDir = basename(dirname(dirname(__FILE__))); | ||
$install = $root . DS . 'lib'; | ||
$composerInstall = $root . DS . $appDir . DS . 'Vendor' . DS . 'cakephp' . DS . 'cakephp' . DS . 'lib'; | ||
|
||
// the following lines differ from its sibling | ||
// /lib/Cake/Console/Templates/skel/Console/cake.php | ||
if (file_exists($composerInstall . DS . $dispatcher)) { | ||
$install = $composerInstall; | ||
} | ||
|
||
ini_set('include_path', $install . PATH_SEPARATOR . ini_get('include_path')); | ||
unset($root, $appDir, $install, $composerInstall); | ||
} | ||
|
||
if (!include $dispatcher) { | ||
trigger_error('Could not locate CakePHP core files.', E_USER_ERROR); | ||
} | ||
unset($dispatcher); | ||
|
||
return ShellDispatcher::run($argv); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.