I am working with Bitrix24. I want to customise the component and module of Bitrix24. But I didn't have the standard documentation for this. Some one help me for the same,how we can work with local folder for customise component and module etc.
If you need to change logic of component you may do through this way:
local
folder in your documet_root
pathcomponents
folder in the local
folderbitrix
folder in the components
folder/bitrix/components/bitrix
to
/local/components/bitrix
component.php
file (or in class.php
file if
component using new bitrix core - D7) in the copied folderIf you need to change only the view, this is another way:
/local/components/bitrix
you have to
create /local/templates/.default/
folder.default
template of a needed componenttemplate.php
fileWith the second way, you also may change (or rich it) some data in final $arResult
array provided for the template.php, just create result_modifier.php
file in the template directory.
You can find this and other information in the free course Bitrix Framework, pay attention to this link, it will be very helpful