Pear for 1.4, mage for 1.5. File downloaded into /downloader/.cache/community/
./pear download magento-community/Shipping_Agent
./mage download community Shipping_Agent
| Get-Mailbox | Get-MailboxPermission | where {$_.user.tostring() -ne "NT AUTHORITY\SELF" -and $_.IsInherited -eq $false} | Select Identity,User,@{Name='Access Rights';Expression={[string]::join(', ', $_.AccessRights)}} | Export-Csv -NoTypeInformation mailboxpermissions.csv |
| #!/bin/bash | |
| brew tap josegonzalez/php | |
| brew tap homebrew/dupes | |
| brew install php54 --with-fpm --with-imap --without-apache --with-debug --with-postgresql | |
| mkdir -p ~/Library/LaunchAgents | |
| cp /usr/local/opt/php54/homebrew.mxcl.php54.plist ~/Library/LaunchAgents/ | |
| launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php54.plist | |
| ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents | |
| launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist | |
| ln -sfv /usr/local/opt/php54/*.plist ~/Library/LaunchAgents |
| $attSet = Mage::getModel('eav/entity_type')->getCollection()->addFieldToFilter('entity_type_code','catalog_product')->getFirstItem(); // This is because the you adding the attribute to catalog_products entity ( there is different entities in magento ex : catalog_category, order,invoice... etc ) | |
| $attSetCollection = Mage::getModel('eav/entity_type')->load($attSet->getId())->getAttributeSetCollection(); // this is the attribute sets associated with this entity | |
| $attributeInfo = Mage::getResourceModel('eav/entity_attribute_collection') | |
| ->setCodeFilter('firstname') | |
| ->getFirstItem(); | |
| $attCode = $attributeInfo->getAttributeCode(); | |
| $attId = $attributeInfo->getId(); | |
| foreach ($attSetCollection as $a) | |
| { | |
| $set = Mage::getModel('eav/entity_attribute_set')->load($a->getId()); |
| css/ | |
| |-- option/ # Ayarlar, Değişkenler ve Fonksiyonlar | |
| | |-- _theme.scss - projenin renk kodları ve genel tema ayarları | |
| | |-- _values.scss - offset, size, genel font ayarları, vs... | |
| | |-- _function.scss | |
| | |-- _mixin.scss | |
| | | |
| |-- helper/ # Yardımcı dosyalar | |
| | |-- _normalize.scss - https://github.com/necolas/normalize.css | |
| | |-- _formalize.scss - https://github.com/interacthings/formalize.css/ |
| SET FOREIGN_KEY_CHECKS = 0; | |
| TRUNCATE TABLE `catalog_category_entity`; | |
| TRUNCATE TABLE `catalog_category_entity_datetime`; | |
| TRUNCATE TABLE `catalog_category_entity_decimal`; | |
| TRUNCATE TABLE `catalog_category_entity_int`; | |
| TRUNCATE TABLE `catalog_category_entity_text`; | |
| TRUNCATE TABLE `catalog_category_entity_varchar`; | |
| TRUNCATE TABLE `catalog_category_product`; | |
| TRUNCATE TABLE `catalog_category_product_index`; | |