Version Notes
1.6.1.0
Download this release
Release Info
Developer | Magento Core Team |
Extension | Mage_Core_Adminhtml |
Version | 1.6.1.0 |
Comparing to | |
See all releases |
Version 1.6.1.0
- app/code/core/Mage/Adminhtml/Block/Abstract.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Api/Buttons.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Api/Editroles.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Api/Edituser.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Api/Grid/Role.php +81 -0
- app/code/core/Mage/Adminhtml/Block/Api/Role.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Api/Role/Grid/User.php +182 -0
- app/code/core/Mage/Adminhtml/Block/Api/Roles.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Api/Tab/Roleinfo.php +81 -0
- app/code/core/Mage/Adminhtml/Block/Api/Tab/Rolesedit.php +117 -0
- app/code/core/Mage/Adminhtml/Block/Api/Tab/Rolesusers.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Api/Tab/Userroles.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Api/User.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Api/User/Edit.php +58 -0
- app/code/core/Mage/Adminhtml/Block/Api/User/Edit/Form.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Api/User/Edit/Tab/Main.php +153 -0
- app/code/core/Mage/Adminhtml/Block/Api/User/Edit/Tab/Roles.php +119 -0
- app/code/core/Mage/Adminhtml/Block/Api/User/Edit/Tabs.php +62 -0
- app/code/core/Mage/Adminhtml/Block/Api/User/Grid.php +106 -0
- app/code/core/Mage/Adminhtml/Block/Api/Users.php +54 -0
- app/code/core/Mage/Adminhtml/Block/Backup.php +68 -0
- app/code/core/Mage/Adminhtml/Block/Backup/Grid.php +108 -0
- app/code/core/Mage/Adminhtml/Block/Cache.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Cache/Additional.php +38 -0
- app/code/core/Mage/Adminhtml/Block/Cache/Grid.php +182 -0
- app/code/core/Mage/Adminhtml/Block/Cache/Notifications.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Catalog.php +41 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php +209 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Checkboxes/Tree.php +98 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit/Form.php +234 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Image.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Pricestep.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Available.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Default.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Attributes.php +179 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Design.php +58 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/General.php +137 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Product.php +162 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tabs.php +167 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php +352 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php +178 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Form.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Attribute/Urlkey.php +65 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/DateFieldsOrder.php +61 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/YearRange.php +54 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php +183 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg/Content.php +65 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product.php +94 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit.php +101 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Form.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Front.php +106 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php +261 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Options.php +36 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/System.php +134 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tabs.php +73 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Grid.php +123 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Attributes.php +94 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Created.php +89 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Grid.php +78 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php +409 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formattribute.php +70 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formgroup.php +88 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formset.php +87 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Attribute.php +39 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Group.php +39 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Add.php +88 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main/Filter.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Configure.php +74 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Error.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset.php +62 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Configurable.php +76 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Grouped.php +146 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Options.php +73 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Qty.php +75 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Update/Result.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php +152 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit.php +249 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute.php +136 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Attributes.php +124 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php +75 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tabs.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php +52 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Ajax/Serializer.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts.php +77 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Price.php +122 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Stock.php +114 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php +161 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes/Create.php +103 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php +239 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Crosssell.php +260 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php +145 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Option.php +345 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Abstract.php +69 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Date.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/File.php +43 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Select.php +90 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Text.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price.php +63 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Recurring.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Tier.php +382 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Related.php +258 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Reviews.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Settings.php +90 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config.php +341 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid.php +312 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Filter/Inventory.php +56 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Checkbox.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Inventory.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Simple.php +196 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php +236 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Settings.php +159 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Tag.php +108 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Tag/Customer.php +103 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Upsell.php +257 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Websites.php +111 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php +238 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Configurable.php +59 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Grouped.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Frontend/Product/Watermark.php +107 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Grid.php +291 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Apply.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Boolean.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Config.php +70 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php +191 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/Content.php +170 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Image.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Enabled.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Price.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Price.php +90 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Price.php +37 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser.php +294 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser/Container.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Search.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit.php +59 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit/Form.php +157 -0
- app/code/core/Mage/Adminhtml/Block/Catalog/Search/Grid.php +178 -0
- app/code/core/Mage/Adminhtml/Block/Checkout/Agreement.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit/Form.php +151 -0
- app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Grid.php +110 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Block.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit.php +83 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit/Form.php +140 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Block/Grid.php +132 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Block/Widget/Chooser.php +159 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit.php +142 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Form.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Content.php +153 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Design.php +184 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Main.php +175 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Meta.php +135 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tabs.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid.php +150 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid/Renderer/Action.php +41 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Page/Widget/Chooser.php +165 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content.php +161 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Files.php +155 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Newfolder.php +37 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Uploader.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Tree.php +99 -0
- app/code/core/Mage/Adminhtml/Block/Customer.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit.php +123 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Form.php +60 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Newpass.php +56 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Region.php +69 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php +244 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php +274 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Cart.php +158 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Carts.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter.php +99 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid.php +126 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Filter/Status.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Action.php +73 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Status.php +65 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Orders.php +136 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Reviews.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Tag.php +122 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Tags.php +122 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php +204 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Accordion.php +88 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Cart.php +123 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Grid/Renderer/Item.php +136 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Orders.php +126 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Sales.php +139 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Wishlist.php +137 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist.php +279 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist/Grid/Renderer/Description.php +42 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tabs.php +131 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Boolean.php +56 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.php +212 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Image.php +104 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Grid.php +221 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Grid/Filter/Country.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Grid/Renderer/Multiaction.php +92 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Group.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit/Form.php +98 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Group/Grid.php +90 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Online.php +60 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Online/Filter.php +77 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid.php +166 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Ip.php +42 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Type.php +42 -0
- app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Url.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard.php +88 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Abstract.php +80 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Bar.php +116 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Diagrams.php +59 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php +560 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Grid.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Grids.php +89 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Orders/Grid.php +124 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Sales.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Last.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Renderer/Searchquery.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Top.php +104 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Amounts.php +69 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Most.php +118 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Newest.php +116 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Orders.php +68 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Ordered.php +126 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Viewed.php +105 -0
- app/code/core/Mage/Adminhtml/Block/Dashboard/Totals.php +79 -0
- app/code/core/Mage/Adminhtml/Block/Denied.php +37 -0
- app/code/core/Mage/Adminhtml/Block/Html/Date.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Html/Select.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Media/Editor.php +152 -0
- app/code/core/Mage/Adminhtml/Block/Media/Uploader.php +218 -0
- app/code/core/Mage/Adminhtml/Block/Messages.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Problem.php +90 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Filter/Checkbox.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Renderer/Checkbox.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Queue.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit.php +262 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit/Form.php +202 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid.php +130 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid/Renderer/Action.php +79 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview.php +79 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview/Form.php +69 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber.php +96 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid.php +208 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Checkbox.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Website.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Renderer/Checkbox.php +52 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Template.php +59 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit.php +350 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit/Form.php +155 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid.php +121 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Action.php +62 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Sender.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview.php +76 -0
- app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview/Form.php +70 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Baseurl.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Grid.php +125 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php +68 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Notice.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php +68 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Inbox.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Security.php +93 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Survey.php +63 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Toolbar.php +164 -0
- app/code/core/Mage/Adminhtml/Block/Notification/Window.php +183 -0
- app/code/core/Mage/Adminhtml/Block/Page.php +77 -0
- app/code/core/Mage/Adminhtml/Block/Page/Footer.php +82 -0
- app/code/core/Mage/Adminhtml/Block/Page/Head.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Page/Header.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Page/Menu.php +278 -0
- app/code/core/Mage/Adminhtml/Block/Page/Notices.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Buttons.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Editroles.php +54 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Edituser.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Grid/Role.php +81 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Grid/User.php +91 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Role.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Role/Grid/User.php +182 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Roles.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Roleinfo.php +96 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Rolesedit.php +197 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Rolesusers.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Useredit.php +164 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Userroles.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/User.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit.php +58 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit/Form.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit/Tab/Main.php +153 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit/Tab/Roles.php +128 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit/Tabs.php +62 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/User/Grid.php +106 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Usernroles.php +39 -0
- app/code/core/Mage/Adminhtml/Block/Permissions/Users.php +54 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit.php +61 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit/Form.php +73 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Edit.php +58 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Edit/Form.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers.php +40 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Form.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Grid.php +106 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/List.php +87 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Form.php +99 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tabs.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Grid.php +143 -0
- app/code/core/Mage/Adminhtml/Block/Poll/Poll.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog.php +52 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit.php +84 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Form.php +54 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Js.php +36 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Actions.php +162 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Conditions.php +133 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Main.php +201 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tabs.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Grid.php +107 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit.php +85 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Form.php +54 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Actions.php +178 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Conditions.php +121 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Labels.php +128 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php +259 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tabs.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Quote/Grid.php +120 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser.php +177 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Daterange.php +142 -0
- app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Sku.php +181 -0
- app/code/core/Mage/Adminhtml/Block/Rating/Edit.php +65 -0
- app/code/core/Mage/Adminhtml/Block/Rating/Edit/Form.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Form.php +158 -0
- app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Options.php +74 -0
- app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tabs.php +63 -0
- app/code/core/Mage/Adminhtml/Block/Rating/Grid.php +78 -0
- app/code/core/Mage/Adminhtml/Block/Rating/Rating.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/MtdStart.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/YtdStart.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Report/Customer/Accounts.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Report/Customer/Accounts/Grid.php +63 -0
- app/code/core/Mage/Adminhtml/Block/Report/Customer/Orders.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Report/Customer/Orders/Grid.php +98 -0
- app/code/core/Mage/Adminhtml/Block/Report/Customer/Totals.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Report/Customer/Totals/Grid.php +98 -0
- app/code/core/Mage/Adminhtml/Block/Report/Filter/Form.php +229 -0
- app/code/core/Mage/Adminhtml/Block/Report/Grid.php +616 -0
- app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php +255 -0
- app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Blanknumber.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Currency.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Customer.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Product.php +53 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads.php +68 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Grid.php +112 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Renderer/Purchases.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php +125 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock.php +69 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock/Grid.php +106 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Ordered.php +41 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Ordered/Grid.php +76 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Sold.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Sold/Grid.php +93 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed/Grid.php +79 -0
- app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics/Grid.php +163 -0
- app/code/core/Mage/Adminhtml/Block/Report/Review/Customer.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Report/Review/Customer/Grid.php +92 -0
- app/code/core/Mage/Adminhtml/Block/Report/Review/Detail.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Report/Review/Detail/Grid.php +99 -0
- app/code/core/Mage/Adminhtml/Block/Report/Review/Product.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Report/Review/Product/Grid.php +119 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers.php +56 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers/Grid.php +96 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php +146 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Grid/Column/Renderer/Date.php +112 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced/Grid.php +117 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded/Grid.php +109 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales.php +56 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales/Grid.php +223 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping/Grid.php +111 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax.php +56 -0
- app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax/Grid.php +131 -0
- app/code/core/Mage/Adminhtml/Block/Report/Search.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Report/Search/Grid.php +123 -0
- app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned.php +70 -0
- app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php +171 -0
- app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer/Grid.php +106 -0
- app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product/Grid.php +103 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Customer.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Customer/Detail.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Customer/Detail/Grid.php +108 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Customer/Grid.php +118 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Popular.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Popular/Detail.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Popular/Detail/Grid.php +106 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Popular/Grid.php +113 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Product.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Product/Detail.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Product/Detail/Grid.php +93 -0
- app/code/core/Mage/Adminhtml/Block/Report/Tag/Product/Grid.php +120 -0
- app/code/core/Mage/Adminhtml/Block/Report/Wishlist.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Report/Wishlist/Grid.php +113 -0
- app/code/core/Mage/Adminhtml/Block/Review/Add.php +123 -0
- app/code/core/Mage/Adminhtml/Block/Review/Add/Form.php +118 -0
- app/code/core/Mage/Adminhtml/Block/Review/Edit.php +93 -0
- app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php +141 -0
- app/code/core/Mage/Adminhtml/Block/Review/Grid.php +264 -0
- app/code/core/Mage/Adminhtml/Block/Review/Grid/Filter/Type.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Review/Grid/Renderer/Type.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Review/Main.php +68 -0
- app/code/core/Mage/Adminhtml/Block/Review/Product/Grid.php +122 -0
- app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php +128 -0
- app/code/core/Mage/Adminhtml/Block/Review/Rating/Summary.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Sales.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo/Grid.php +165 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Invoice.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Invoice/Grid.php +164 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php +616 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Default.php +92 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name.php +38 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name/Grouped.php +58 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Qty.php +37 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Configurable.php +42 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Default.php +41 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order.php +53 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Abstract.php +112 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Address.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Address/Form.php +88 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Comments/View.php +84 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create.php +131 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Abstract.php +121 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Address.php +103 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method.php +52 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method/Form.php +111 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Comment.php +59 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons.php +58 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer.php +59 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer/Grid.php +129 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Data.php +92 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form.php +116 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php +187 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Account.php +149 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php +200 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage.php +88 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php +315 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php +62 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php +360 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Load.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Messages.php +43 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter.php +62 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter/Form.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid.php +210 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Giftmessage.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Price.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Product.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Qty.php +79 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php +149 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method.php +53 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method/Form.php +154 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Abstract.php +187 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Cart.php +96 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Compared.php +81 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.php +118 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pviewed.php +110 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Reorder.php +121 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Viewed.php +69 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Wishlist.php +122 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store/Select.php +40 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals.php +113 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Default.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Discount.php +41 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Grandtotal.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Shipping.php +97 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Subtotal.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Table.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Tax.php +36 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create.php +91 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Adjustments.php +87 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Form.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Items.php +206 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php +79 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View.php +230 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Comments.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Form.php +82 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Items.php +83 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php +219 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create.php +80 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Form.php +132 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Items.php +222 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Tracking.php +98 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Totals.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View.php +208 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Comments.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Form.php +84 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Items.php +85 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Payment.php +61 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create.php +70 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Form.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php +134 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Tracking.php +84 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php +358 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging/Grid.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Tracking/Info.php +41 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View.php +119 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Comments.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Form.php +127 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Items.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Tracking.php +141 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Status.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign/Form.php +96 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit/Form.php +54 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Grid.php +144 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New/Form.php +119 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Totalbar.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals.php +70 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Item.php +103 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Tax.php +82 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View.php +323 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Form.php +42 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php +273 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/History.php +92 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php +164 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php +244 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Messages.php +60 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php +158 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php +234 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php +142 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php +159 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php +146 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php +98 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tabs.php +63 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Reorder/Renderer/Action.php +96 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Shipment.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Shipment/Grid.php +187 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Totals.php +103 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Transactions.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Child/Grid.php +86 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail.php +115 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail/Grid.php +100 -0
- app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Grid.php +159 -0
- app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.php +166 -0
- app/code/core/Mage/Adminhtml/Block/Sitemap.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Sitemap/Edit.php +69 -0
- app/code/core/Mage/Adminhtml/Block/Sitemap/Edit/Form.php +115 -0
- app/code/core/Mage/Adminhtml/Block/Sitemap/Grid.php +114 -0
- app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Action.php +43 -0
- app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Link.php +53 -0
- app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Time.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Store/Switcher.php +209 -0
- app/code/core/Mage/Adminhtml/Block/System/Account/Edit.php +51 -0
- app/code/core/Mage/Adminhtml/Block/System/Account/Edit/Form.php +110 -0
- app/code/core/Mage/Adminhtml/Block/System/Cache/Edit.php +185 -0
- app/code/core/Mage/Adminhtml/Block/System/Cache/Form.php +89 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Dwstree.php +97 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Edit.php +98 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form.php +723 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field.php +141 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Array/Abstract.php +208 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Datetime.php +42 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Export.php +54 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/File.php +67 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Heading.php +49 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Image.php +58 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Import.php +78 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Notification.php +43 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Regexceptions.php +50 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Select/Allowspecific.php +63 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Select/Flatcatalog.php +46 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/Select/Flatproduct.php +52 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Fieldset.php +202 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php +108 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Form/Fieldset/Order/Statuses.php +88 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Switcher.php +109 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/System/Storage/Media/Synchronize.php +140 -0
- app/code/core/Mage/Adminhtml/Block/System/Config/Tabs.php +342 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Gui.php +45 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit.php +67 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Form.php +54 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Tab/Upload.php +58 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Tab/View.php +64 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Tab/Wizard.php +235 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Tabs.php +85 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Grid.php +126 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile.php +47 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Edit.php +67 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Edit/Filter/Action.php +55 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Edit/Form.php +54 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Edit/Renderer/Action.php +48 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Edit/Tab/Edit.php +70 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Edit/Tab/History.php +86 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Edit/Tab/Run.php +100 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Edit/Tabs.php +68 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Grid.php +102 -0
- app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Run.php +200 -0
- app/code/core/Mage/Adminhtml/Block/System/Currency.php +115 -0
- app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Form.php +50 -0
- app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Main.php +37 -0
- app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Rates.php +37 -0
- app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tabs.php +59 -0
- app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php +99 -0
- app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Services.php +67 -0
- app/code/core/Mage/Adminhtml/Block/System/Design.php +46 -0
- app/code/core/Mage/Adminhtml/Block/System/Design/Edit.php +97 -0
- app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tab/General.php +88 -0
- app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tabs.php +46 -0
- app/code/core/Mage/Adminhtml/Block/System/Design/Grid.php +127 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template.php +94 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php +412 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit/Form.php +189 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid.php +124 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Filter/Type.php +64 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Action.php +67 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Sender.php +55 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Type.php +52 -0
- app/code/core/Mage/Adminhtml/Block/System/Email/Template/Preview.php +65 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Delete.php +100 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Form.php +80 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Group.php +70 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Website.php +71 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php +103 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php +340 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Grid.php +84 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Group.php +44 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Store.php +44 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Website.php +42 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Store.php +75 -0
- app/code/core/Mage/Adminhtml/Block/System/Variable.php +47 -0
- app/code/core/Mage/Adminhtml/Block/System/Variable/Edit.php +137 -0
- app/code/core/Mage/Adminhtml/Block/System/Variable/Edit/Form.php +117 -0
- app/code/core/Mage/Adminhtml/Block/System/Variable/Grid.php +97 -0
- app/code/core/Mage/Adminhtml/Block/Tag.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Assigned/Grid.php +277 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Customer.php +68 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Customer/Grid.php +121 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Edit.php +167 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Edit/Accordion.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Edit/Assigned.php +58 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Edit/Form.php +113 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Grid/All.php +105 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Grid/Customers.php +141 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Grid/Pending.php +169 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Grid/Products.php +93 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Pending.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Product.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Product/Grid.php +125 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Store/Switcher.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Tag.php +49 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Tag/Edit.php +100 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Tag/Edit/Form.php +93 -0
- app/code/core/Mage/Adminhtml/Block/Tag/Tag/Grid.php +167 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Class.php +59 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Class/Edit.php +63 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Class/Edit/Form.php +100 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Class/Grid.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Form.php +217 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid.php +104 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Country.php +46 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExport.php +36 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title.php +71 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title/Fieldset.php +39 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Add.php +55 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Save.php +105 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rule.php +44 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit.php +74 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit/Form.php +158 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php +150 -0
- app/code/core/Mage/Adminhtml/Block/Template.php +83 -0
- app/code/core/Mage/Adminhtml/Block/Text/List.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Urlrewrite.php +65 -0
- app/code/core/Mage/Adminhtml/Block/Urlrewrite/Category/Tree.php +152 -0
- app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit.php +285 -0
- app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit/Form.php +262 -0
- app/code/core/Mage/Adminhtml/Block/Urlrewrite/Grid.php +125 -0
- app/code/core/Mage/Adminhtml/Block/Urlrewrite/Link.php +48 -0
- app/code/core/Mage/Adminhtml/Block/Urlrewrite/Product/Grid.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Urlrewrite/Selector.php +88 -0
- app/code/core/Mage/Adminhtml/Block/Widget.php +94 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Accordion.php +61 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Accordion/Item.php +95 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Breadcrumbs.php +68 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Button.php +70 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Container.php +310 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Form.php +250 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Form/Container.php +176 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Form/Element.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Dependence.php +133 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Gallery.php +97 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Element.php +53 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset.php +53 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset/Element.php +53 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid.php +1648 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Block.php +42 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column.php +398 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Abstract.php +132 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Checkbox.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Country.php +40 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php +199 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Datetime.php +166 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Interface.php +39 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Massaction.php +45 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php +150 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Radio.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php +62 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Select.php +97 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Store.php +103 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Text.php +41 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Theme.php +121 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php +160 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Action.php +161 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Checkbox.php +104 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Concat.php +57 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Country.php +51 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Currency.php +94 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Date.php +96 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Datetime.php +87 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Input.php +52 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Interface.php +47 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Ip.php +43 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Longtext.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Massaction.php +66 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Number.php +58 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Options.php +67 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Price.php +92 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Radio.php +75 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Select.php +56 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Store.php +168 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Text.php +72 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Theme.php +102 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Wrapline.php +59 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Container.php +108 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction.php +38 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Abstract.php +291 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item.php +116 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Default.php +50 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Interface.php +38 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Grid/Serializer.php +132 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Tab/Interface.php +64 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php +399 -0
- app/code/core/Mage/Adminhtml/Block/Widget/Tree.php +36 -0
- app/code/core/Mage/Adminhtml/Block/Widget/View/Container.php +75 -0
- app/code/core/Mage/Adminhtml/Controller/Action.php +375 -0
- app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php +141 -0
- app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php +154 -0
- app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php +119 -0
- app/code/core/Mage/Adminhtml/Exception.php +36 -0
- app/code/core/Mage/Adminhtml/Helper/Addresses.php +51 -0
- app/code/core/Mage/Adminhtml/Helper/Catalog.php +109 -0
- app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Composite.php +152 -0
- app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php +162 -0
- app/code/core/Mage/Adminhtml/Helper/Dashboard/Abstract.php +119 -0
- app/code/core/Mage/Adminhtml/Helper/Dashboard/Data.php +92 -0
- app/code/core/Mage/Adminhtml/Helper/Dashboard/Order.php +63 -0
- app/code/core/Mage/Adminhtml/Helper/Data.php +125 -0
- app/code/core/Mage/Adminhtml/Helper/Js.php +71 -0
- app/code/core/Mage/Adminhtml/Helper/Media/Js.php +70 -0
- app/code/core/Mage/Adminhtml/Helper/Rss.php +50 -0
- app/code/core/Mage/Adminhtml/Helper/Sales.php +113 -0
- app/code/core/Mage/Adminhtml/Model/Config.php +256 -0
- app/code/core/Mage/Adminhtml/Model/Config/Data.php +304 -0
- app/code/core/Mage/Adminhtml/Model/Customer/Renderer/Region.php +119 -0
- app/code/core/Mage/Adminhtml/Model/Email/Template.php +116 -0
- app/code/core/Mage/Adminhtml/Model/Extension.php +397 -0
- app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php +351 -0
- app/code/core/Mage/Adminhtml/Model/LayoutUpdate/Validator.php +122 -0
- app/code/core/Mage/Adminhtml/Model/Newsletter/Renderer/Text.php +49 -0
- app/code/core/Mage/Adminhtml/Model/Observer.php +79 -0
- app/code/core/Mage/Adminhtml/Model/Report/Item.php +66 -0
- app/code/core/Mage/Adminhtml/Model/Sales/Order.php +90 -0
- app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php +1738 -0
- app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php +173 -0
- app/code/core/Mage/Adminhtml/Model/Search/Catalog.php +73 -0
- app/code/core/Mage/Adminhtml/Model/Search/Customer.php +74 -0
- app/code/core/Mage/Adminhtml/Model/Search/Order.php +85 -0
- app/code/core/Mage/Adminhtml/Model/Session.php +41 -0
- app/code/core/Mage/Adminhtml/Model/Session/Quote.php +164 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Admin/Custom.php +104 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Admin/Custompath.php +49 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Admin/Observer.php +54 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Admin/Password/Link/Expirationperiod.php +52 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Admin/Usecustom.php +54 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Admin/Usecustompath.php +50 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Admin/Usesecretkey.php +42 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Baseurl.php +63 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Cache.php +50 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Catalog/Inventory/Managestock.php +57 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Catalog/Search/Type.php +56 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Category.php +64 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Currency/Abstract.php +95 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Currency/Allow.php +64 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Currency/Base.php +53 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Currency/Cron.php +74 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Currency/Default.php +57 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Customer/Address/Street.php +83 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Customer/Password/Link/Expirationperiod.php +53 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Customer/Show/Address.php +48 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Customer/Show/Customer.php +124 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Datashare.php +40 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Design/Exception.php +30 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Design/Package.php +39 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Email/Address.php +45 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Email/Sender.php +45 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Encrypted.php +74 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/File.php +184 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Image.php +46 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Image/Favicon.php +92 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Image/Pdf.php +41 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Layer/Children.php +35 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Locale.php +94 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Locale/Timezone.php +45 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Log/Cron.php +88 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Price/Scope.php +36 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Product/Alert/Cron.php +81 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Secure.php +39 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Seo/Product.php +45 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Serialized.php +43 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Serialized/Array.php +46 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Shipping/Tablerate.php +41 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Sitemap.php +42 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Sitemap/Cron.php +80 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Storage/Media/Database.php +42 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Store.php +42 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Translate.php +57 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Clone/Media/Image.php +70 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Admin/Page.php +168 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Allregion.php +71 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Catalog/GridPerPage.php +48 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Catalog/ListMode.php +40 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Catalog/ListPerPage.php +50 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Catalog/ListSort.php +66 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Catalog/Search/Type.php +53 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Catalog/TimeFormat.php +36 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Category.php +63 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Checktype.php +55 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Cms/Page.php +40 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Cms/Wysiwyg/Enabled.php +53 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Country.php +45 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Country/Full.php +33 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Cron/Frequency.php +58 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Currency.php +40 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Currency/Service.php +49 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Customer/Group.php +42 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Date/Short.php +40 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Design/Package.php +35 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Design/Robots.php +39 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Dev/Dbautoup.php +38 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Email/Identity.php +50 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Email/Method.php +51 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Email/Smtpauth.php +39 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Email/Template.php +74 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Enabledisable.php +37 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Frequency.php +42 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Language.php +43 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Locale.php +38 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Locale/Country.php +38 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Locale/Currency.php +40 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Locale/Currency/All.php +43 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Locale/Timezone.php +38 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Locale/Weekdays.php +38 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Nooptreq.php +37 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Notification/Frequency.php +47 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Order/Status.php +64 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Order/Status/New.php +33 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Order/Status/Newprocessing.php +36 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Order/Status/Processing.php +33 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Payment/Allmethods.php +34 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Payment/Allowedmethods.php +49 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Payment/Allspecificcountries.php +37 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Payment/Cctype.php +42 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Price/Scope.php +37 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Price/Step.php +42 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Product/Options/Price.php +43 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Product/Options/Type.php +65 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Product/Thumbnail.php +43 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Reports/Scope.php +48 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Shipping/Allmethods.php +63 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Shipping/Allowedmethods.php +35 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Shipping/Allspecificcountries.php +37 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Shipping/Flatrate.php +38 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Shipping/Tablerate.php +39 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Shipping/Taxclass.php +35 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Storage/Media/Database.php +87 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Storage/Media/Storage.php +51 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Store.php +40 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Tax/Apply/On.php +36 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Tax/Basedon.php +37 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Tax/Catalog.php +37 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Watermark/Position.php +56 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Web/Protocol.php +38 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Web/Redirect.php +38 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Website.php +46 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Yesno.php +47 -0
- app/code/core/Mage/Adminhtml/Model/System/Config/Source/Yesnocustom.php +48 -0
- app/code/core/Mage/Adminhtml/Model/System/Store.php +508 -0
- app/code/core/Mage/Adminhtml/Model/Url.php +169 -0
- app/code/core/Mage/Adminhtml/controllers/AjaxController.php +55 -0
- app/code/core/Mage/Adminhtml/controllers/Api/RoleController.php +211 -0
- app/code/core/Mage/Adminhtml/controllers/Api/UserController.php +183 -0
- app/code/core/Mage/Adminhtml/controllers/CacheController.php +195 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Category/WidgetController.php +72 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/CategoryController.php +499 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php +250 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php +363 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Product/DatafeedsController.php +35 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php +78 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GroupController.php +54 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Product/ReviewController.php +377 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php +238 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/Product/WidgetController.php +70 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php +1090 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/SearchController.php +197 -0
- app/code/core/Mage/Adminhtml/controllers/CatalogController.php +50 -0
- app/code/core/Mage/Adminhtml/controllers/Checkout/AgreementController.php +156 -0
- app/code/core/Mage/Adminhtml/controllers/Cms/Block/WidgetController.php +48 -0
- app/code/core/Mage/Adminhtml/controllers/Cms/BlockController.php +205 -0
- app/code/core/Mage/Adminhtml/controllers/Cms/Page/WidgetController.php +48 -0
- app/code/core/Mage/Adminhtml/controllers/Cms/PageController.php +276 -0
- app/code/core/Mage/Adminhtml/controllers/Cms/Wysiwyg/ImagesController.php +233 -0
- app/code/core/Mage/Adminhtml/controllers/Cms/WysiwygController.php +66 -0
- app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php +160 -0
- app/code/core/Mage/Adminhtml/controllers/Customer/ConfigController.php +55 -0
- app/code/core/Mage/Adminhtml/controllers/Customer/GroupController.php +155 -0
- app/code/core/Mage/Adminhtml/controllers/Customer/OnlineController.php +54 -0
- app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php +147 -0
- app/code/core/Mage/Adminhtml/controllers/CustomerController.php +828 -0
- app/code/core/Mage/Adminhtml/controllers/DashboardController.php +100 -0
- app/code/core/Mage/Adminhtml/controllers/IndexController.php +392 -0
- app/code/core/Mage/Adminhtml/controllers/JsonController.php +59 -0
- app/code/core/Mage/Adminhtml/controllers/Media/EditorController.php +50 -0
- app/code/core/Mage/Adminhtml/controllers/Media/UploaderController.php +55 -0
- app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php +104 -0
- app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php +279 -0
- app/code/core/Mage/Adminhtml/controllers/Newsletter/SubscriberController.php +161 -0
- app/code/core/Mage/Adminhtml/controllers/Newsletter/TemplateController.php +243 -0
- app/code/core/Mage/Adminhtml/controllers/NotificationController.php +185 -0
- app/code/core/Mage/Adminhtml/controllers/Permissions/RoleController.php +277 -0
- app/code/core/Mage/Adminhtml/controllers/Permissions/UserController.php +212 -0
- app/code/core/Mage/Adminhtml/controllers/Poll/AnswerController.php +131 -0
- app/code/core/Mage/Adminhtml/controllers/PollController.php +216 -0
- app/code/core/Mage/Adminhtml/controllers/Promo/CatalogController.php +312 -0
- app/code/core/Mage/Adminhtml/controllers/Promo/QuoteController.php +288 -0
- app/code/core/Mage/Adminhtml/controllers/Promo/WidgetController.php +133 -0
- app/code/core/Mage/Adminhtml/controllers/PromoController.php +50 -0
- app/code/core/Mage/Adminhtml/controllers/RatingController.php +157 -0
- app/code/core/Mage/Adminhtml/controllers/Report/CustomerController.php +179 -0
- app/code/core/Mage/Adminhtml/controllers/Report/ProductController.php +283 -0
- app/code/core/Mage/Adminhtml/controllers/Report/ReviewController.php +175 -0
- app/code/core/Mage/Adminhtml/controllers/Report/SalesController.php +481 -0
- app/code/core/Mage/Adminhtml/controllers/Report/ShopcartController.php +173 -0
- app/code/core/Mage/Adminhtml/controllers/Report/StatisticsController.php +204 -0
- app/code/core/Mage/Adminhtml/controllers/Report/TagController.php +303 -0
- app/code/core/Mage/Adminhtml/controllers/ReportController.php +148 -0
- app/code/core/Mage/Adminhtml/controllers/Rss/CatalogController.php +63 -0
- app/code/core/Mage/Adminhtml/controllers/Rss/OrderController.php +51 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Billing/AgreementController.php +221 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/CreditmemoController.php +62 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/InvoiceController.php +53 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php +614 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php +456 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/EditController.php +87 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php +492 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php +750 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/StatusController.php +239 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/View/GiftmessageController.php +79 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php +760 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Recurring/ProfileController.php +205 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/ShipmentController.php +53 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php +140 -0
- app/code/core/Mage/Adminhtml/controllers/SalesController.php +62 -0
- app/code/core/Mage/Adminhtml/controllers/SitemapController.php +285 -0
- app/code/core/Mage/Adminhtml/controllers/SurveyController.php +58 -0
- app/code/core/Mage/Adminhtml/controllers/System/AccountController.php +96 -0
- app/code/core/Mage/Adminhtml/controllers/System/BackupController.php +153 -0
- app/code/core/Mage/Adminhtml/controllers/System/CacheController.php +341 -0
- app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php +183 -0
- app/code/core/Mage/Adminhtml/controllers/System/ConfigController.php +317 -0
- app/code/core/Mage/Adminhtml/controllers/System/Convert/GuiController.php +154 -0
- app/code/core/Mage/Adminhtml/controllers/System/Convert/ProfileController.php +317 -0
- app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php +125 -0
- app/code/core/Mage/Adminhtml/controllers/System/DesignController.php +130 -0
- app/code/core/Mage/Adminhtml/controllers/System/Email/TemplateController.php +225 -0
- app/code/core/Mage/Adminhtml/controllers/System/StoreController.php +501 -0
- app/code/core/Mage/Adminhtml/controllers/System/VariableController.php +204 -0
- app/code/core/Mage/Adminhtml/controllers/SystemController.php +57 -0
- app/code/core/Mage/Adminhtml/controllers/TagController.php +359 -0
- app/code/core/Mage/Adminhtml/controllers/Tax/Class/CustomerController.php +187 -0
- app/code/core/Mage/Adminhtml/controllers/Tax/Class/ProductController.php +187 -0
- app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php +106 -0
- app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php +485 -0
- app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php +173 -0
- app/code/core/Mage/Adminhtml/controllers/UrlrewriteController.php +232 -0
- app/code/core/Mage/Adminhtml/etc/adminhtml.xml +273 -0
- app/code/core/Mage/Adminhtml/etc/config.xml +229 -0
- app/locale/en_US/Mage_Adminhtml.csv +1142 -0
- package.xml +18 -0
app/code/core/Mage/Adminhtml/Block/Abstract.php
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Adminhtml abstract block
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Adminhtml
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
class Mage_Adminhtml_Block_Abstract extends Mage_Core_Block_Template
|
35 |
+
{
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Enter description here...
|
39 |
+
*
|
40 |
+
* @return string
|
41 |
+
*/
|
42 |
+
protected function _getUrlModelClass()
|
43 |
+
{
|
44 |
+
return 'adminhtml/url';
|
45 |
+
}
|
46 |
+
|
47 |
+
}
|
app/code/core/Mage/Adminhtml/Block/Api/Buttons.php
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
class Mage_Adminhtml_Block_Api_Buttons extends Mage_Adminhtml_Block_Template
|
28 |
+
{
|
29 |
+
|
30 |
+
public function __construct()
|
31 |
+
{
|
32 |
+
parent::__construct();
|
33 |
+
$this->setTemplate('api/userinfo.phtml');
|
34 |
+
}
|
35 |
+
|
36 |
+
protected function _prepareLayout()
|
37 |
+
{
|
38 |
+
$this->setChild('backButton',
|
39 |
+
$this->getLayout()->createBlock('adminhtml/widget_button')
|
40 |
+
->setData(array(
|
41 |
+
'label' => Mage::helper('adminhtml')->__('Back'),
|
42 |
+
'onclick' => 'window.location.href=\''.$this->getUrl('*/*/').'\'',
|
43 |
+
'class' => 'back'
|
44 |
+
))
|
45 |
+
);
|
46 |
+
|
47 |
+
$this->setChild('resetButton',
|
48 |
+
$this->getLayout()->createBlock('adminhtml/widget_button')
|
49 |
+
->setData(array(
|
50 |
+
'label' => Mage::helper('adminhtml')->__('Reset'),
|
51 |
+
'onclick' => 'window.location.reload()'
|
52 |
+
))
|
53 |
+
);
|
54 |
+
|
55 |
+
$this->setChild('saveButton',
|
56 |
+
$this->getLayout()->createBlock('adminhtml/widget_button')
|
57 |
+
->setData(array(
|
58 |
+
'label' => Mage::helper('adminhtml')->__('Save Role'),
|
59 |
+
'onclick' => 'roleForm.submit();return false;',
|
60 |
+
'class' => 'save'
|
61 |
+
))
|
62 |
+
);
|
63 |
+
|
64 |
+
$this->setChild('deleteButton',
|
65 |
+
$this->getLayout()->createBlock('adminhtml/widget_button')
|
66 |
+
->setData(array(
|
67 |
+
'label' => Mage::helper('adminhtml')->__('Delete Role'),
|
68 |
+
'onclick' => 'deleteConfirm(\'' . Mage::helper('adminhtml')->__('Are you sure you want to do this?') . '\', \'' . $this->getUrl('*/*/delete', array('rid' => $this->getRequest()->getParam('rid'))) . '\')',
|
69 |
+
'class' => 'delete'
|
70 |
+
))
|
71 |
+
);
|
72 |
+
return parent::_prepareLayout();
|
73 |
+
}
|
74 |
+
|
75 |
+
public function getBackButtonHtml()
|
76 |
+
{
|
77 |
+
return $this->getChildHtml('backButton');
|
78 |
+
}
|
79 |
+
|
80 |
+
public function getResetButtonHtml()
|
81 |
+
{
|
82 |
+
return $this->getChildHtml('resetButton');
|
83 |
+
}
|
84 |
+
|
85 |
+
public function getSaveButtonHtml()
|
86 |
+
{
|
87 |
+
return $this->getChildHtml('saveButton');
|
88 |
+
}
|
89 |
+
|
90 |
+
public function getDeleteButtonHtml()
|
91 |
+
{
|
92 |
+
if( intval($this->getRequest()->getParam('rid')) == 0 ) {
|
93 |
+
return;
|
94 |
+
}
|
95 |
+
return $this->getChildHtml('deleteButton');
|
96 |
+
}
|
97 |
+
|
98 |
+
public function getUser()
|
99 |
+
{
|
100 |
+
return Mage::registry('user_data');
|
101 |
+
}
|
102 |
+
}
|
app/code/core/Mage/Adminhtml/Block/Api/Editroles.php
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
class Mage_Adminhtml_Block_Api_Editroles extends Mage_Adminhtml_Block_Widget_Tabs {
|
28 |
+
public function __construct()
|
29 |
+
{
|
30 |
+
parent::__construct();
|
31 |
+
$this->setId('role_info_tabs');
|
32 |
+
$this->setDestElementId('role_edit_form');
|
33 |
+
$this->setTitle(Mage::helper('adminhtml')->__('Role Information'));
|
34 |
+
}
|
35 |
+
|
36 |
+
protected function _beforeToHtml()
|
37 |
+
{
|
38 |
+
$roleId = $this->getRequest()->getParam('rid', false);
|
39 |
+
$role = Mage::getModel("api/roles")
|
40 |
+
->load($roleId);
|
41 |
+
|
42 |
+
$this->addTab('info', array(
|
43 |
+
'label' => Mage::helper('adminhtml')->__('Role Info'),
|
44 |
+
'title' => Mage::helper('adminhtml')->__('Role Info'),
|
45 |
+
'content' => $this->getLayout()->createBlock('adminhtml/api_tab_roleinfo')->setRole($role)->toHtml(),
|
46 |
+
'active' => true
|
47 |
+
));
|
48 |
+
|
49 |
+
$this->addTab('account', array(
|
50 |
+
'label' => Mage::helper('adminhtml')->__('Role Resources'),
|
51 |
+
'title' => Mage::helper('adminhtml')->__('Role Resources'),
|
52 |
+
'content' => $this->getLayout()->createBlock('adminhtml/api_tab_rolesedit')->toHtml(),
|
53 |
+
));
|
54 |
+
|
55 |
+
if( intval($roleId) > 0 ) {
|
56 |
+
$this->addTab('roles', array(
|
57 |
+
'label' => Mage::helper('adminhtml')->__('Role Users'),
|
58 |
+
'title' => Mage::helper('adminhtml')->__('Role Users'),
|
59 |
+
'content' => $this->getLayout()->createBlock('adminhtml/api_tab_rolesusers', 'role.users.grid')->toHtml(),
|
60 |
+
));
|
61 |
+
}
|
62 |
+
return parent::_beforeToHtml();
|
63 |
+
}
|
64 |
+
}
|
app/code/core/Mage/Adminhtml/Block/Api/Edituser.php
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
class Mage_Adminhtml_Block_Api_Edituser extends Mage_Adminhtml_Block_Widget_Tabs {
|
28 |
+
public function __construct()
|
29 |
+
{
|
30 |
+
parent::__construct();
|
31 |
+
$this->setId('customer_info_tabs');
|
32 |
+
$this->setDestElementId('user_edit_form');
|
33 |
+
}
|
34 |
+
|
35 |
+
protected function _beforeToHtml()
|
36 |
+
{
|
37 |
+
$this->addTab('account', array(
|
38 |
+
'label' => Mage::helper('adminhtml')->__('User Info'),
|
39 |
+
'title' => Mage::helper('adminhtml')->__('User Info'),
|
40 |
+
'content' => $this->getLayout()->createBlock('adminhtml/api_tab_useredit')->toHtml(),
|
41 |
+
'active' => true
|
42 |
+
));
|
43 |
+
if( $this->getUser()->getUserId() ) {
|
44 |
+
$this->addTab('roles', array(
|
45 |
+
'label' => Mage::helper('adminhtml')->__('Roles'),
|
46 |
+
'title' => Mage::helper('adminhtml')->__('Roles'),
|
47 |
+
'content' => $this->getLayout()->createBlock('adminhtml/api_tab_userroles')->toHtml(),
|
48 |
+
));
|
49 |
+
}
|
50 |
+
return parent::_beforeToHtml();
|
51 |
+
}
|
52 |
+
|
53 |
+
public function getUser()
|
54 |
+
{
|
55 |
+
return Mage::registry('user_data');
|
56 |
+
}
|
57 |
+
}
|
app/code/core/Mage/Adminhtml/Block/Api/Grid/Role.php
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* roles grid
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Adminhtml
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
class Mage_Adminhtml_Block_Api_Grid_Role extends Mage_Adminhtml_Block_Widget_Grid
|
35 |
+
{
|
36 |
+
public function __construct()
|
37 |
+
{
|
38 |
+
parent::__construct();
|
39 |
+
$this->setId('roleGrid');
|
40 |
+
$this->setSaveParametersInSession(true);
|
41 |
+
$this->setDefaultSort('role_id');
|
42 |
+
$this->setDefaultDir('asc');
|
43 |
+
$this->setUseAjax(true);
|
44 |
+
}
|
45 |
+
|
46 |
+
protected function _prepareCollection()
|
47 |
+
{
|
48 |
+
$collection = Mage::getModel("api/roles")->getCollection();
|
49 |
+
$this->setCollection($collection);
|
50 |
+
|
51 |
+
return parent::_prepareCollection();
|
52 |
+
}
|
53 |
+
|
54 |
+
protected function _prepareColumns()
|
55 |
+
{
|
56 |
+
|
57 |
+
$this->addColumn('role_id', array(
|
58 |
+
'header' =>Mage::helper('adminhtml')->__('ID'),
|
59 |
+
'index' =>'role_id',
|
60 |
+
'align' => 'right',
|
61 |
+
'width' => '50px'
|
62 |
+
));
|
63 |
+
|
64 |
+
$this->addColumn('role_name', array(
|
65 |
+
'header' =>Mage::helper('adminhtml')->__('Role Name'),
|
66 |
+
'index' =>'role_name'
|
67 |
+
));
|
68 |
+
|
69 |
+
return parent::_prepareColumns();
|
70 |
+
}
|
71 |
+
|
72 |
+
public function getGridUrl()
|
73 |
+
{
|
74 |
+
return $this->getUrl('*/*/roleGrid', array('_current'=>true));
|
75 |
+
}
|
76 |
+
|
77 |
+
public function getRowUrl($row)
|
78 |
+
{
|
79 |
+
return $this->getUrl('*/*/editrole', array('rid' => $row->getRoleId()));
|
80 |
+
}
|
81 |
+
}
|
app/code/core/Mage/Adminhtml/Block/Api/Role.php
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Adminhtml permissioms role block
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Adminhtml
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
|
35 |
+
class Mage_Adminhtml_Block_Api_Role extends Mage_Adminhtml_Block_Widget_Grid_Container
|
36 |
+
{
|
37 |
+
|
38 |
+
public function __construct()
|
39 |
+
{
|
40 |
+
$this->_controller = 'api_role';
|
41 |
+
$this->_headerText = Mage::helper('adminhtml')->__('Roles');
|
42 |
+
$this->_addButtonLabel = Mage::helper('adminhtml')->__('Add New Role');
|
43 |
+
parent::__construct();
|
44 |
+
}
|
45 |
+
|
46 |
+
}
|
app/code/core/Mage/Adminhtml/Block/Api/Role/Grid/User.php
ADDED
@@ -0,0 +1,182 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Acl role user grid
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Adminhtml
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
class Mage_Adminhtml_Block_Api_Role_Grid_User extends Mage_Adminhtml_Block_Widget_Grid
|
35 |
+
{
|
36 |
+
|
37 |
+
public function __construct()
|
38 |
+
{
|
39 |
+
parent::__construct();
|
40 |
+
$this->setDefaultSort('role_user_id');
|
41 |
+
$this->setDefaultDir('asc');
|
42 |
+
$this->setId('roleUserGrid');
|
43 |
+
$this->setDefaultFilter(array('in_role_users'=>1));
|
44 |
+
$this->setUseAjax(true);
|
45 |
+
}
|
46 |
+
|
47 |
+
protected function _addColumnFilterToCollection($column)
|
48 |
+
{
|
49 |
+
if ($column->getId() == 'in_role_users') {
|
50 |
+
$inRoleIds = $this->_getUsers();
|
51 |
+
if (empty($inRoleIds)) {
|
52 |
+
$inRoleIds = 0;
|
53 |
+
}
|
54 |
+
if ($column->getFilter()->getValue()) {
|
55 |
+
$this->getCollection()->addFieldToFilter('user_id', array('in'=>$inRoleIds));
|
56 |
+
}
|
57 |
+
else {
|
58 |
+
if($inRoleIds) {
|
59 |
+
$this->getCollection()->addFieldToFilter('user_id', array('nin'=>$inRoleIds));
|
60 |
+
}
|
61 |
+
}
|
62 |
+
}
|
63 |
+
else {
|
64 |
+
parent::_addColumnFilterToCollection($column);
|
65 |
+
}
|
66 |
+
return $this;
|
67 |
+
}
|
68 |
+
|
69 |
+
protected function _prepareCollection()
|
70 |
+
{
|
71 |
+
$roleId = $this->getRequest()->getParam('rid');
|
72 |
+
Mage::register('RID', $roleId);
|
73 |
+
$collection = Mage::getModel('api/roles')->getUsersCollection();
|
74 |
+
$this->setCollection($collection);
|
75 |
+
return parent::_prepareCollection();
|
76 |
+
}
|
77 |
+
|
78 |
+
protected function _prepareColumns()
|
79 |
+
{
|
80 |
+
$this->addColumn('in_role_users', array(
|
81 |
+
'header_css_class' => 'a-center',
|
82 |
+
'type' => 'checkbox',
|
83 |
+
'name' => 'in_role_users',
|
84 |
+
'values' => $this->_getUsers(),
|
85 |
+
'align' => 'center',
|
86 |
+
'index' => 'user_id'
|
87 |
+
));
|
88 |
+
|
89 |
+
$this->addColumn('role_user_id', array(
|
90 |
+
'header' =>Mage::helper('adminhtml')->__('User ID'),
|
91 |
+
'width' =>5,
|
92 |
+
'align' =>'left',
|
93 |
+
'sortable' =>true,
|
94 |
+
'index' =>'user_id'
|
95 |
+
));
|
96 |
+
|
97 |
+
$this->addColumn('role_user_username', array(
|
98 |
+
'header' =>Mage::helper('adminhtml')->__('User Name'),
|
99 |
+
'align' =>'left',
|
100 |
+
'index' =>'username'
|
101 |
+
));
|
102 |
+
|
103 |
+
$this->addColumn('role_user_firstname', array(
|
104 |
+
'header' =>Mage::helper('adminhtml')->__('First Name'),
|
105 |
+
'align' =>'left',
|
106 |
+
'index' =>'firstname'
|
107 |
+
));
|
108 |
+
|
109 |
+
$this->addColumn('role_user_lastname', array(
|
110 |
+
'header' =>Mage::helper('adminhtml')->__('Last Name'),
|
111 |
+
'align' =>'left',
|
112 |
+
'index' =>'lastname'
|
113 |
+
));
|
114 |
+
|
115 |
+
$this->addColumn('role_user_email', array(
|
116 |
+
'header' =>Mage::helper('adminhtml')->__('Email'),
|
117 |
+
'width' =>40,
|
118 |
+
'align' =>'left',
|
119 |
+
'index' =>'email'
|
120 |
+
));
|
121 |
+
|
122 |
+
$this->addColumn('role_user_is_active', array(
|
123 |
+
'header' => Mage::helper('adminhtml')->__('Status'),
|
124 |
+
'index' => 'is_active',
|
125 |
+
'align' =>'left',
|
126 |
+
'type' => 'options',
|
127 |
+
'options' => array('1' => Mage::helper('adminhtml')->__('Active'), '0' => Mage::helper('adminhtml')->__('Inactive')),
|
128 |
+
));
|
129 |
+
|
130 |
+
/*
|
131 |
+
$this->addColumn('grid_actions',
|
132 |
+
array(
|
133 |
+
'header'=>Mage::helper('adminhtml')->__('Actions'),
|
134 |
+
'width'=>5,
|
135 |
+
'sortable'=>false,
|
136 |
+
'filter' =>false,
|
137 |
+
'type' => 'action',
|
138 |
+
'actions' => array(
|
139 |
+
array(
|
140 |
+
'caption' => Mage::helper('adminhtml')->__('Remove'),
|
141 |
+
'onClick' => 'role.deleteFromRole($role_id);'
|
142 |
+
)
|
143 |
+
)
|
144 |
+
)
|
145 |
+
);
|
146 |
+
*/
|
147 |
+
|
148 |
+
return parent::_prepareColumns();
|
149 |
+
}
|
150 |
+
|
151 |
+
public function getGridUrl()
|
152 |
+
{
|
153 |
+
$roleId = $this->getRequest()->getParam('rid');
|
154 |
+
return $this->getUrl('*/*/editrolegrid', array('rid' => $roleId));
|
155 |
+
}
|
156 |
+
|
157 |
+
protected function _getUsers($json=false)
|
158 |
+
{
|
159 |
+
if ( $this->getRequest()->getParam('in_role_user') != "" ) {
|
160 |
+
return $this->getRequest()->getParam('in_role_user');
|
161 |
+
}
|
162 |
+
$roleId = ( $this->getRequest()->getParam('rid') > 0 ) ? $this->getRequest()->getParam('rid') : Mage::registry('RID');
|
163 |
+
$users = Mage::getModel('api/roles')->setId($roleId)->getRoleUsers();
|
164 |
+
if (sizeof($users) > 0) {
|
165 |
+
if ( $json ) {
|
166 |
+
$jsonUsers = Array();
|
167 |
+
foreach($users as $usrid) $jsonUsers[$usrid] = 0;
|
168 |
+
return Mage::helper('core')->jsonEncode((object)$jsonUsers);
|
169 |
+
} else {
|
170 |
+
return array_values($users);
|
171 |
+
}
|
172 |
+
} else {
|
173 |
+
if ( $json ) {
|
174 |
+
return '{}';
|
175 |
+
} else {
|
176 |
+
return array();
|
177 |
+
}
|
178 |
+
}
|
179 |
+
}
|
180 |
+
|
181 |
+
}
|
182 |
+
|
app/code/core/Mage/Adminhtml/Block/Api/Roles.php
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* user roles block
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Adminhtml
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
class Mage_Adminhtml_Block_Api_Roles extends Mage_Adminhtml_Block_Template
|
35 |
+
{
|
36 |
+
public function __construct()
|
37 |
+
{
|
38 |
+
parent::__construct();
|
39 |
+
$this->setTemplate('api/roles.phtml');
|
40 |
+
}
|
41 |
+
|
42 |
+
public function getAddNewUrl()
|
43 |
+
{
|
44 |
+
return $this->getUrl('*/*/editrole');
|
45 |
+
}
|
46 |
+
|
47 |
+
public function getGridHtml()
|
48 |
+
{
|
49 |
+
return $this->getLayout()->createBlock('adminhtml/api_grid_role')->toHtml();
|
50 |
+
}
|
51 |
+
}
|
app/code/core/Mage/Adminhtml/Block/Api/Tab/Roleinfo.php
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|