sourcecode location

Permalink
hello everyone,

i'm new to concrete5... and i was wondering about something...

i build a site using a very simple theme... i put it online... and then i right-mouse clicked the site and selected: "show sourcecode"...

the header and the footer are fairly easy to find... /concrete/packages/name of the theme > footer.php or header.php

so, where is the rest of the source code stored? is it fragmented into several small files? and what would be the location of these files

i'm very curious about this... for i want to understand how things work

greetings from belgium (hence my bad english...)

 
jeremia008 replied on at Permalink Reply
and for instance:

i made a form...
under the form is a button, called "submit"...
maybe when i know where the raw html is stored, i could change that from "submit" into "verzenden"...

it's for the little things like this, i'm curious about the source code...

greetings...
SheldonB replied on at Permalink Reply
SheldonB
planist1 replied on at Permalink Reply
planist1
If you are wanting to change the submit button text, the starting process is outlined pretty well here:http://www.concrete5.org/community/forums/customizing_c5/override-c...

At the end, change this line:
echo '<tr><td> </td><td><input class="formBlockSubmitButton ccm-input-button" name="Submit" type="submit" value="'.t('Submit').'" /></td></tr>';

to
echo '<tr><td> </td><td><input class="formBlockSubmitButton ccm-input-button" name="Submit" type="submit" value="'.t('New Submit Button Text').'" /></td></tr>';