Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ramster cath
/
new_xado
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Рамиз Мирзаев
2024-08-20 09:59:04 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e6e42e0232d76f750d7500c4a1695f1607fe1885
e6e42e02
1 parent
6910c7d9
Init commit
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
9 additions
and
12 deletions
composer.json
composer.lock
strg/cache/cache.article.total.1.0.1.510df4f199151ec834717e7a6f19f35a.1724139308
strg/cache/cache.article.total.1.0.1.9ad218453f833c1f2c56dc4a018ae03d.1724139308
strg/cache/cache.article.total.1.0.1.fe25175129461e57e31dedaf0534c733.1724139308
strg/cache/cache.store.1724139530
strg/logs/error.log
strg/vendor/composer/installed.php
strg/vendor/composer/platform_check.php
upload/1x_adm/controller/extension/dashboard/sale.php
upload/1x_adm/controller/startup/sass.php
composer.json
View file @
e6e42e0
...
...
@@ -12,7 +12,7 @@
"braintree/braintree_php"
:
"3.40.0"
,
"cardinity/cardinity-sdk-php"
:
"^v2.0"
,
"divido/divido-php"
:
">=1.15"
,
"php"
:
">=
7.3.0
"
,
"php"
:
">=
8.3.7
"
,
"scssphp/scssphp"
:
"^1.13.0"
,
"zoujingli/wechat-developer"
:
"^1.2"
,
"twig/twig"
:
"^3.3"
,
...
...
composer.lock
View file @
e6e42e0
...
...
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies"
,
"This file is @generated automatically"
],
"content-hash"
:
"
bebfab293209d0467e1fa76ace0e7a9e
"
,
"content-hash"
:
"
066d509665b741afda5f6b797e6e0422
"
,
"packages"
:
[
{
"name"
:
"braintree/braintree_php"
,
...
...
@@ -1681,7 +1681,7 @@
"prefer-stable"
:
false
,
"prefer-lowest"
:
false
,
"platform"
:
{
"php"
:
">=
7.3.0
"
"php"
:
">=
8.3.7
"
},
"platform-dev"
:
[],
"plugin-api-version"
:
"2.6.0"
...
...
strg/cache/cache.article.total.1.0.1.510df4f199151ec834717e7a6f19f35a.1724139308
deleted
100644 → 0
View file @
6910c7d
"2"
\ No newline at end of file
strg/cache/cache.article.total.1.0.1.9ad218453f833c1f2c56dc4a018ae03d.1724139308
deleted
100644 → 0
View file @
6910c7d
"2"
\ No newline at end of file
strg/cache/cache.article.total.1.0.1.fe25175129461e57e31dedaf0534c733.1724139308
deleted
100644 → 0
View file @
6910c7d
"1"
\ No newline at end of file
strg/cache/cache.store.1724139530
deleted
100644 → 0
View file @
6910c7d
[]
\ No newline at end of file
strg/logs/error.log
View file @
e6e42e0
This diff could not be displayed because it is too large.
strg/vendor/composer/installed.php
View file @
e6e42e0
...
...
@@ -3,7 +3,7 @@
'name'
=>
'opencart/opencart'
,
'pretty_version'
=>
'dev-master'
,
'version'
=>
'dev-master'
,
'reference'
=>
'
996087ba419c80d45c04e7d931ff9efb9997e37e
'
,
'reference'
=>
'
6910c7d907054a6d8fbb80c010c6ae70e68ee1ec
'
,
'type'
=>
'project'
,
'install_path'
=>
__DIR__
.
'/../../../'
,
'aliases'
=>
array
(),
...
...
@@ -76,7 +76,7 @@
'opencart/opencart'
=>
array
(
'pretty_version'
=>
'dev-master'
,
'version'
=>
'dev-master'
,
'reference'
=>
'
996087ba419c80d45c04e7d931ff9efb9997e37e
'
,
'reference'
=>
'
6910c7d907054a6d8fbb80c010c6ae70e68ee1ec
'
,
'type'
=>
'project'
,
'install_path'
=>
__DIR__
.
'/../../../'
,
'aliases'
=>
array
(),
...
...
strg/vendor/composer/platform_check.php
View file @
e6e42e0
...
...
@@ -4,8 +4,8 @@
$issues
=
array
();
if
(
!
(
PHP_VERSION_ID
>=
80
100
))
{
$issues
[]
=
'Your Composer dependencies require a PHP version ">= 8.
1.0
". You are running '
.
PHP_VERSION
.
'.'
;
if
(
!
(
PHP_VERSION_ID
>=
80
307
))
{
$issues
[]
=
'Your Composer dependencies require a PHP version ">= 8.
3.7
". You are running '
.
PHP_VERSION
.
'.'
;
}
if
(
$issues
)
{
...
...
upload/1x_adm/controller/extension/dashboard/sale.php
View file @
e6e42e0
...
...
@@ -113,7 +113,7 @@ class ControllerExtensionDashboardSale extends Controller {
}
elseif
(
$sale_total
>
1000
)
{
$data
[
'total'
]
=
round
(
$sale_total
/
1000
,
1
)
.
'K'
;
}
else
{
$data
[
'total'
]
=
round
(
$sale_total
);
$data
[
'total'
]
=
round
(
(
$sale_total
===
null
)
?
0
:
$sale_total
);
}
$data
[
'sale'
]
=
$this
->
url
->
link
(
'sale/order'
,
'user_token='
.
$this
->
session
->
data
[
'user_token'
],
true
);
...
...
upload/1x_adm/controller/startup/sass.php
View file @
e6e42e0
<?php
class
ControllerStartupSass
extends
Controller
{
public
function
index
()
{
return
false
;
$files
=
glob
(
DIR_APPLICATION
.
'view/stylesheet/*.scss'
);
if
(
$files
)
{
...
...
Please
register
or
login
to post a comment