We have 455 guests online
OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Change form to add new vehicle (1 viewing) (1) Guest
VehicleManager component support
Go to bottom Favoured: 1
TOPIC: Change form to add new vehicle
#2030
maw (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Change form to add new vehicle 11 Months, 2 Weeks ago Karma: 0  
Hi I need help.
In the form, add veicle of veicle manager I need to change the head number of number-to-door lettere.Ho tried to find among the files and mysql db but I could not change. What is the file. Where can I find this field.
Thank you very much

 
Logged Logged  
 
Last Edit: 2011/06/08 13:28 By maw.
  The administrator has disabled public write access.
#2040
admin (Admin)
Admin
Posts: 1679
graph
User Offline Click here to see the profile of this user
Re:Change form to add new vehicle 11 Months, 2 Weeks ago Karma: 17  
Hello

For vehicle manager

You will need open files:
{yours
site/administrator/components/com_vehiclemanager/admin.vehiclemanager.php
{yours site/components/com_vehiclemanager/vehiclemanager.php

and in they find rows like:
Code:

        $numdoors[] = mosHtml::makeOption('none',"none");
        $numdoors[] = mosHtml::makeOption('2',"2");
        $numdoors[] = mosHtml::makeOption('3',"3");
        $numdoors[] = mosHtml::makeOption('4',"4");
        $numdoors[] = mosHtml::makeOption('5',"5");
        $numdoors[] = mosHtml::makeOption('6',"6");
        $numdoors[] = mosHtml::makeOption('7',"7")

;

and change it as example to
Code:

        $numdoors[] = mosHtml::makeOption('none',"none");
        $numdoors[] = mosHtml::makeOption('Berlina',"Berlina");
        $numdoors[] = mosHtml::makeOption('city car',"city car");
        $numdoors[] = mosHtml::makeOption('all road',"all road");




Thanks,
Ordasoft team
 
Logged Logged  
  The administrator has disabled public write access.
#2051
maw (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Re:Change form to add new vehicle 11 Months, 2 Weeks ago Karma: 0  
many thanks, everything works.
Surely I must ask you something else about veicle manager.
I hope you will support me.
Again many thanks.
 
Logged Logged  
  The administrator has disabled public write access.
#2052
admin (Admin)
Admin
Posts: 1679
graph
User Offline Click here to see the profile of this user
Re:Change form to add new vehicle 11 Months, 2 Weeks ago Karma: 17  
You may vote for us on joomla.org
 
Logged Logged  
  The administrator has disabled public write access.
#2053
maw (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Re:Change form to add new vehicle 11 Months, 2 Weeks ago Karma: 0  
admin wrote:
You may vote for us on joomla.org

certainly I do
 
Logged Logged  
  The administrator has disabled public write access.
#2057
admin (Admin)
Admin
Posts: 1679
graph
User Offline Click here to see the profile of this user
Re:Change form to add new vehicle 11 Months, 2 Weeks ago Karma: 17  
Thanks!
 
Logged Logged  
  The administrator has disabled public write access.
Go to top