https://fdroid.tetaneutral.net/fdroid/repo?fingerprint=43238D512C1E5EB2D6569F4A3AFBF5523418B82E0A3ED1552770ABB9A9C9CCAB https://mirror.cyberbits.eu/fdroid/repo?fingerprint=43238D512C1E5EB2D6569F4A3AFBF5523418B82E0A3ED1552770ABB9A9C9CCAB https://bubu1.eu/fdroid/repo?fingerprint=43238D512C1E5EB2D6569F4A3AFBF5523418B82E0A3ED1552770ABB9A9C9CCAB https://ftp.fau.de/fdroid/repo?fingerprint=43238D512C1E5EB2D6569F4A3AFBF5523418B82E0A3ED1552770ABB9A9C9CCAB
$ stars.sh
8 titanium-codes/LocGetter
5 titanium-codes/docker-compose
5 frameworkwtf/skeleton
3 titanium-codes/yandex-tts-processor
2 titanium-codes/cibu
2 titanium-codes/bump.sh
2 rakshazi/getSetTrait
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
bin/magento sampledata:install | |
bin/magento sampledata:deploy | |
bin/magento module:enable Magento_CustomerSampleData Magento_MsrpSampleData Magento_CatalogSampleData Magento_DownloadableSampleData Magento_OfflineShippingSampleData Magento_BundleSampleData Magento_ConfigurableSampleData Magento_ThemeSampleData Magento_ProductLinksSampleData Magento_ReviewSampleData Magento_CatalogRuleSampleData Magento_SwatchesSampleData Magento_GroupedProductSampleData Magento_TaxSampleData Magento_CmsSampleData Magento_SalesRuleSampleData Magento_SalesSampleData Magento_WidgetSampleData Magento_WishlistSampleData | |
rm -rf var/cache/* var/page_cache/* var/generation/* | |
bin/magento setup:upgrade | |
bin/magento setup:di:compile | |
bin/magento indexer:reindex | |
bin/magento setup:static-content:deploy |
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 | |
public function viewAction() | |
{ | |
// Get initial data from request | |
$categoryId = (int) $this->getRequest()->getParam('category', false); | |
$productId = (int) $this->getRequest()->getParam('id'); | |
$specifyOptions = $this->getRequest()->getParam('options'); | |
/////////////////////////////////////// START WITH 301 REDIRECT | |
$product = Mage::getModel('catalog/product')->load($productId); |
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 | |
foreach ($request->getAllItems() as $item) { | |
$request->setPackageValue($request->getPackageValue() + $item->getTaxAmount()); | |
} |