https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber='
This file contains hidden or 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
<?php | |
/** | |
* This file is part of Namespace for Magento. | |
* | |
* @license All rights reserved | |
* @author Phuong LE <[email protected]> <@> | |
* @category Namespace | |
* @package Namespace_Core | |
* @copyright Copyright (c) 2016 Agence Soon (http://www.agence-soon.fr) | |
*/ |
This file contains hidden or 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
* {box-sizing: border-box} | |
[hidden] {display: none !important} | |
[disabled] {pointer-events:none; opacity: 0.3} | |
.horizontal {display: flex; flex-direction: row; justify-content: space-between} | |
.vertical {display: flex; flex-direction: column} | |
.center {justify-content: center; align-items: center} | |
.flex {flex: 1} | |
html { | |
--spacing-xs: 8px; | |
--spacing: 24px; |
This file contains hidden or 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
<?php | |
class Yii2ValetDriver extends ValetDriver | |
{ | |
/** | |
* Determine if the driver serves the request. | |
* | |
* @param string $sitePath | |
* @param string $siteName | |
* @param string $uri |
This file contains hidden or 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
CREATE | |
OR REPLACE | |
VIEW `inventory_stock_1` AS select | |
distinct `legacy_stock_status`.`product_id` AS `product_id`, | |
`legacy_stock_status`.`website_id` AS `website_id`, | |
`legacy_stock_status`.`stock_id` AS `stock_id`, | |
`legacy_stock_status`.`qty` AS `quantity`, | |
`legacy_stock_status`.`stock_status` AS `is_salable`, | |
`product`.`sku` AS `sku` | |
from |
This file contains hidden or 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
<?xml version="1.0"?> | |
<!-- | |
/** | |
* Copyright © Magento, Inc. All rights reserved. | |
* See COPYING.txt for license details. | |
*/ | |
--> | |
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd" label="Customer My Account (All Pages)" design_abstraction="custom"> | |
<body> | |
<referenceBlock name="customer_account_navigation"> |
This file contains hidden or 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
<?php | |
use Magento\Cms\Model\Block; | |
use Magento\Cms\Model\BlockRepository; | |
use Magento\Cms\Model\BlockFactory; | |
// contruct | |
public function __construct( | |
BlockRepository $blockRepository, | |
BlockFactory $blockFactory | |
) | |
{ |
This file contains hidden or 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
# With Sudo | |
sudo find . -type d -exec chmod 755 {} \; | |
sudo find . -type f -exec chmod 644 {} \; | |
sudo chmod 777 -R app/etc/; | |
sudo chmod 777 -R var/; | |
sudo chmod 777 -R media/; | |
# Without Sudo |