1 tgodfrey Jun 10, 2014 05:55
3 mgsolipa Jun 11, 2014 00:53
Hello @tgodfrey,
The name of the class declared in _skin.class.php
should be spelt exactly as the folder. For example, the class for the custom skin must be declared as following:
class custom_Skin extends Skin
{
your skin notes must be:
class notes_Skin extends Skin
{
and so on...
4 tgodfrey Jun 11, 2014 01:57
Ah. Thanks. And the following:
function get_default_name()
{
return 'custom';
}
should remain as that?
5 mgsolipa Jun 12, 2014 06:03
@tgodfrey that's the name that you see in the back-office when manage the skins, so you should change it accordingly.
6 tgodfrey Jun 12, 2014 13:11
Very good. I will do that. Good to have the clarification, with little time to experiment. My thanks again.
That should read:
in the case of each, so that with respect to the /notes skin I have
function get_default_name()
{
return 'notes';
}