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...)
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...)
the core lives in /concrete or if you updated /updates/version
http://www.concrete5.org/documentation/how-tos/developers/change-th...
http://www.concrete5.org/marketplace/addons/internationalization/...
http://www.concrete5.org/documentation/how-tos/developers/change-th...
http://www.concrete5.org/marketplace/addons/internationalization/...
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:
to
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>';
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...