I am pretty new to Joomla and i want to add my own HTML, PHP and Javascript code into my joomla website.
I have been looking at this question:
Custom php code in Joomla page
How ever it seems that the Jumi plugin or extension is only for 1.4 - 1.6 and i'm running joomla 3.0
I was wondering if any of you guys know or use any form of extension to add your own code into your joomla website!?
Not sure where you found 1.4 and 1.6 from, but Jumi is definitely compatible with Joomla 3.x, as you see see in the following link:
http://extensions.joomla.org/extensions/edition/custom-code-in-content/1023
it has the image:
Download and install the extension and don't forget to read the documentation through if you have issues, as most people seem to forget this ;)
if you waht to add code in sens of your articles will contain code ( PHP, javascript & HTML)
then create simple module try to find some module generator on the net then affect that module to a position and load that module in your article like this {loadmodule position}
Related
I have made a "Payroll" module and the functionality of that module also made with php files but I need to integrate that php files into orange hrm. so now here the problem comes for because I can't understand where to start in orangehrm to integrate it. I know start from index.php after that edit where to get my module withing the footer and header of the OrangeHRM.
And can anyone explain me to find the path of this line
orangehrm is based in symfony (framework MVC), if you wanna add a module, need:
create a folder in (symfony\plugins...)
enable the plugin in setting.yml (\apps\orangehrm\config\setting.yml)
add the module in databases ( use phpmyadmin for this)
add the module in lib
logout, delete cache and login back.
this is way for 3.1 versions. That version of the software you are using?
I am working on a freelancer site that will use Joomla as the base. I would like to create a custom component for the freelancer functionality and was wondering if there is a way to convert an existing freelancer PHP program (specifically Ilance) into a Joomla component. I have a license for Ilance and thought about using the wrapper in Joomla for it. But this option will not work for me. Instead, I would like to add all the functionality of Ilance into Joomla without creating it from scratch.
OFC you can do that. Joomla components should be MVC but they don't need to. They can actually be any (crappy) code you want. That's why everyone calls himself a pro joomla developer ;)
You only need to work your way into creating the basic joomla bootstrapper file and some installation xml and off you go.
I have been develope one site in joomla framework. Now my trouble is that client want one custom page in this site. so, please guide me how to i setup theme interface in this custom page?
Although this is not my favorite solution, instead of including Joomla in your script, you can put your script inside an article with an extension that can read your code, like DirectPHP and others.
You can make something like error.php which is really a mini application that renders a single page. You can see in the core how elements of the emplae are used and you can evn pull in modules and so on.
I want to add some more library and helpers file into Pyrocms which is based on codeigniter.Actually i have to add facebook connect and found some good working examples of facebook connect so now i want to implement these codeingiter libraries and other files in Pyrocms.Let let me know where to put these libraries. Your help will be appreciable.
since version 1.3.0 addons/default/libraries
or addons/shared_addons/libraries for the pro version. (This bit will help on the where to put stuff topic...
http://www.pyrocms.com/docs/1.3/manuals/developers/understanding-the-addons-directory )
Then load the lib in your controller, etc as such $this->load->library('cool_facebook_connect_lib');
And, depending on your version you may have to change around a couple lines in MY_loader for it to work, http://www.pyrocms.com/forums/topics/view/18087
I tried to find the answer for this question, but I cannot find any helpful answers yet.
I know extensions in Joomla 1.0 can work with Joomla 1.5 in Legacy mode, but I'm not sure in Joomla 1.6.
We have needed some works to Convert ...!! here i had attached the link...!! I hope It will be help to you...!!!
http://docs.joomla.org/Upgrading_a_Joomla_1.5_extension_to_Joomla_1.6
You cannot use a 1.5 extension on 1.6 without at least some minor modification. Depending on the extension, you might be able to update just the XML manifest and have a functioning extension. In other cases you may also have to rewrite some code if the extension makes use of depreciated code.
The Wiki page (in the official Joomla docs wiki) linked by Ram Kumar will give you all the info you need to upgrade an extension.
A lot of changes has been put in Joomla 1.6. The components of Joomla 1.5 can't be used in Joomla 1.6 because of all the changes.
For more technical information see Joomla Wiki
Unless you're a programmer,then the answer is no, they use a completely different structure, and for that matter you can't use a Joomla 1.5 extension on 1.7 also.
We often migrate extensions for some of our clients from 1.5 to 1.6 (and now 1.7), but it's a very painful process and takes some time (but it's feasible).