Adding an input file when creating a payment method
It's been a while since I want a way to add file upload system when creating a payment method.
In a custom module , I created a new method of payment. When declaring my fields in the file "system.xml" I'll wish to add an input to upload a PDF.
Here is part of my code :
<bvr translate="label" module="paygate">
.......
....
<fields>
<bvrfile translate="label">
<label>BVR file</label>
<frontend_type>file</frontend_type>
<sort_order>2</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
</bvrfile>
</fields>
.......
....
</bvr>
Here is a screenshot of my admin panel:
Do you know if it is possible to add this type of field and how I can retrieve the file's URL upload?
magento-1.9 module payment-methods
add a comment |
It's been a while since I want a way to add file upload system when creating a payment method.
In a custom module , I created a new method of payment. When declaring my fields in the file "system.xml" I'll wish to add an input to upload a PDF.
Here is part of my code :
<bvr translate="label" module="paygate">
.......
....
<fields>
<bvrfile translate="label">
<label>BVR file</label>
<frontend_type>file</frontend_type>
<sort_order>2</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
</bvrfile>
</fields>
.......
....
</bvr>
Here is a screenshot of my admin panel:
Do you know if it is possible to add this type of field and how I can retrieve the file's URL upload?
magento-1.9 module payment-methods
add a comment |
It's been a while since I want a way to add file upload system when creating a payment method.
In a custom module , I created a new method of payment. When declaring my fields in the file "system.xml" I'll wish to add an input to upload a PDF.
Here is part of my code :
<bvr translate="label" module="paygate">
.......
....
<fields>
<bvrfile translate="label">
<label>BVR file</label>
<frontend_type>file</frontend_type>
<sort_order>2</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
</bvrfile>
</fields>
.......
....
</bvr>
Here is a screenshot of my admin panel:
Do you know if it is possible to add this type of field and how I can retrieve the file's URL upload?
magento-1.9 module payment-methods
It's been a while since I want a way to add file upload system when creating a payment method.
In a custom module , I created a new method of payment. When declaring my fields in the file "system.xml" I'll wish to add an input to upload a PDF.
Here is part of my code :
<bvr translate="label" module="paygate">
.......
....
<fields>
<bvrfile translate="label">
<label>BVR file</label>
<frontend_type>file</frontend_type>
<sort_order>2</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
</bvrfile>
</fields>
.......
....
</bvr>
Here is a screenshot of my admin panel:
Do you know if it is possible to add this type of field and how I can retrieve the file's URL upload?
magento-1.9 module payment-methods
magento-1.9 module payment-methods
edited 10 mins ago
Teja Bhagavan Kollepara
2,94841847
2,94841847
asked Jun 26 '15 at 7:07
FlowFlow
536
536
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
File will be saved in the media folder.
you have to specify the file path in system.xml
by following code
<backend_model>adminhtml/system_config_backend_file</backend_model>
<upload_dir config="system/filesystem/media/" scope_info="1">admin-config-uploads</upload_dir>
here the file will be save in the root/media/<store_code>/admin-config-uploads/
so to get the file path use the following code
<?php
echo Mage::getBaseUrl('media') . 'admin-config-uploads'.Mage::getStoreConfig('system_config_name/group/upload_file');
?>
Refer this link
Thanks a lot, it works like an hot cake !! ;) I'm not able to change the destination folder like you describe. but it does not matter. thanks a lot for your reply & your help
– Flow
Jun 26 '15 at 8:25
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f72233%2fadding-an-input-file-when-creating-a-payment-method%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
File will be saved in the media folder.
you have to specify the file path in system.xml
by following code
<backend_model>adminhtml/system_config_backend_file</backend_model>
<upload_dir config="system/filesystem/media/" scope_info="1">admin-config-uploads</upload_dir>
here the file will be save in the root/media/<store_code>/admin-config-uploads/
so to get the file path use the following code
<?php
echo Mage::getBaseUrl('media') . 'admin-config-uploads'.Mage::getStoreConfig('system_config_name/group/upload_file');
?>
Refer this link
Thanks a lot, it works like an hot cake !! ;) I'm not able to change the destination folder like you describe. but it does not matter. thanks a lot for your reply & your help
– Flow
Jun 26 '15 at 8:25
add a comment |
File will be saved in the media folder.
you have to specify the file path in system.xml
by following code
<backend_model>adminhtml/system_config_backend_file</backend_model>
<upload_dir config="system/filesystem/media/" scope_info="1">admin-config-uploads</upload_dir>
here the file will be save in the root/media/<store_code>/admin-config-uploads/
so to get the file path use the following code
<?php
echo Mage::getBaseUrl('media') . 'admin-config-uploads'.Mage::getStoreConfig('system_config_name/group/upload_file');
?>
Refer this link
Thanks a lot, it works like an hot cake !! ;) I'm not able to change the destination folder like you describe. but it does not matter. thanks a lot for your reply & your help
– Flow
Jun 26 '15 at 8:25
add a comment |
File will be saved in the media folder.
you have to specify the file path in system.xml
by following code
<backend_model>adminhtml/system_config_backend_file</backend_model>
<upload_dir config="system/filesystem/media/" scope_info="1">admin-config-uploads</upload_dir>
here the file will be save in the root/media/<store_code>/admin-config-uploads/
so to get the file path use the following code
<?php
echo Mage::getBaseUrl('media') . 'admin-config-uploads'.Mage::getStoreConfig('system_config_name/group/upload_file');
?>
Refer this link
File will be saved in the media folder.
you have to specify the file path in system.xml
by following code
<backend_model>adminhtml/system_config_backend_file</backend_model>
<upload_dir config="system/filesystem/media/" scope_info="1">admin-config-uploads</upload_dir>
here the file will be save in the root/media/<store_code>/admin-config-uploads/
so to get the file path use the following code
<?php
echo Mage::getBaseUrl('media') . 'admin-config-uploads'.Mage::getStoreConfig('system_config_name/group/upload_file');
?>
Refer this link
edited Jun 26 '15 at 7:37
answered Jun 26 '15 at 7:26
MeenakshiSundaram RMeenakshiSundaram R
8,03942551
8,03942551
Thanks a lot, it works like an hot cake !! ;) I'm not able to change the destination folder like you describe. but it does not matter. thanks a lot for your reply & your help
– Flow
Jun 26 '15 at 8:25
add a comment |
Thanks a lot, it works like an hot cake !! ;) I'm not able to change the destination folder like you describe. but it does not matter. thanks a lot for your reply & your help
– Flow
Jun 26 '15 at 8:25
Thanks a lot, it works like an hot cake !! ;) I'm not able to change the destination folder like you describe. but it does not matter. thanks a lot for your reply & your help
– Flow
Jun 26 '15 at 8:25
Thanks a lot, it works like an hot cake !! ;) I'm not able to change the destination folder like you describe. but it does not matter. thanks a lot for your reply & your help
– Flow
Jun 26 '15 at 8:25
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f72233%2fadding-an-input-file-when-creating-a-payment-method%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown