How to develop new component - joomla2.5

I am a new joomla programmer.i need to build new component for upload cv.my form fields are name, email and upload cv and submit button.i only need to build front end view form, filling the details and after click the submit button send the email.please help me create a component(joomla 2.5).
Thank you.

Welcome to the stack-overflow. This is very basic question to ask you can easily search it in Google. But never mind you can check the given link for how to make component. see below.
Developing a Model-View-Controller Component/2.5/Developing a Basic Component
You can use SWF upload to upload the files.see this
Creating a file uploader in your component
And for the email you can use it like this
Sending email from extensions

Related

How to create an unsubscribe feature in Django?

I am working on a django project, and I'm needing to add an unsubscribe feature to my emails that the server will be sending out. The way that I am managing the mailing list is through a .csv file, which when someone signs up for a service of our's, they get added to the mailing list. In the emails, I want to add an easy unsubscribe feature which would only require the user to click the link in the email, which would lead them to a page that will have a button for the user to unsubscribe from the service, which would be accomplished by removing their name from the mailing list .csv file. My question is, how do I set it up where, when the link is clicked in the email, the website will already know which user is attempting to unsubscribe?
I was attempting to follow a tutorial here Tutorial but I do not have a "user profiles" set up, as it mentions. What other ways might this be accomplished? Is there a way to send the email's username to the website when the page is visited in order for me to make the unsubscription process easier?
Thank you in advance!

how to customize payment method in abantecart

I am new to abantecart. i need help with customising the payment method. On clicking on the checkout on the cart page, i'd like to go to a page with a form which the user should fill some payment information (this serves as the payment method). Then an email should be sent to the store owner for approval and when approved an email should be sent to the user on the approval status. Please how can i achieve this?
The best to create new payment is using of AbanteCart Developer Tools.
Just download pack, unpack some of subdirectories (for v.1.2.9 and you should use "1.3" folder) in to your "extensions" directory, then go to admin and install it. Then generate new project with extension type "payment".
You can look into default_pp_standart extension and use it as example to create your custom payment form.

How can I use InfoPath 2013 with SharePoint 2013 to upload a document when the user submits the form?

Background: I want to make a form in SharePoint for the user to submit vendor information. They fill out the form and attach a document with products and pricing. I can't figure out how to make a form that I can publish to SharePoint to do this. When I use InfoPath's file attachment it fails to publish. I tried using info from this link here but I'm not sure that it's actually a SharePoint form instead of a standard form.
My solution doesn't need to use the attachment I just want users to be able to easily submit the form with the attachment at the same time.
P.s. Sorry if my question is bad. First time using SharePoint, InfoPath, and posting here. Thanks in advance.
Any list that supports attachments should allow you to add an InfoPath form control for that field which will allow the users to add the attachment as part of the form submittal.

How to write a custom view in Djagno admin interface

I am writing a Newsletter app. I have all the things I need to get it running depsite I don't how to put the button Send E-mail while user create newsletter and select the user and how to redirect to my view?
Where is this kind of thing explained in the documentation? How to achieve this.
This should help you get started: https://docs.djangoproject.com/en/1.3/ref/contrib/admin/#adding-views-to-admin-sites
Also, see the official django tutorial here if you haven't already: https://docs.djangoproject.com/en/dev/intro/tutorial01/

Help with design a facebook integration for my website.. App or Page?

I´m building a website to post my own videos using JW Player running my own ads as overlay.
www.planetsnowmobile.com
All my videos will be
Instead of register my own users, having my own forum etc etc I want to use facebook to interact with my visitors:
Individual discussions/comments on individual films instead of my own comment/forum-function
facebook-like-button for individual films (so induvidual like buttons for individual films)
Share induvidual films
Grab location from every unique visitor
Where do I start?
Do I need to create an application or should I use a Facebook "page"?
Maybe both?
I see that i can add an application to a "page" but what does that really do? How do I use that?
What would be the best way for me to do this?
I already have a Facebook "page" for my website and I just created an App as well.
Which one should I use?
Do I need both?
What is the difference?
I know that I can create a like button for a website address on http://developers.facebook.com/docs/reference/plugins/like/
But can I monitor that like button from example an application if I can connect them somehow?
Is that something I want to do?
My Facebook-page already have a user-base where my Facebook-application does not.. is my best option to delete my "page" and start all over with my "application"?
App is their encompassing term for any application that uses their API, this could be on Facebook or on your own personal website - these require an API key to make authenticated calls for users. Pages are FB's own in-Facebook content that users have created, like page for a business located at facebook.com/mybusiness. It sounds like you already have a website and want to add Facebook functionality to it, so you don't want to make another Page. You may not even need to create an App. Things like comment boxes and like buttons can be dropped in as stand-alone copy-and-paste widgets. You can track the like button by enabling FB insights for your website.
So like you noticed you can add a like button to your page using the social plugin from http://developers.facebook.com/docs/reference/plugins/like/ - similar to the like button you can add comment boxes with the plugin at http://developers.facebook.com/docs/reference/plugins/comments/
You can track the results from these plugins by adding your website to Facebook's analytics (Insights) at http://www.facebook.com/insights/
Most of these things are powered by the opengraph metadata in the headers of your website's pages. You can read up on what tags FB uses here http://developers.facebook.com/docs/opengraph/
Everything at http://developers.facebook.com/docs/plugins/ can be used without an application or page ID, and is very good about being responsive to the page they are hosted on: you can add a like button to your video view template without a defined URL in the like button's parameters, and it will automatically direct any likes to the url of the currently viewed video.
You could also direct a like button to point to your existing FB Page, in which case any likes collected from it would be added to the Page's total. Most companies that have a home-page like button do this, so their likes all accumulate to a single total for their business.
Hope that helps.