*Coughs*
View wN3iho.png on ScreenSnapr
Ontopic: Plugin system looks so fucking easy to use. Even a noob like me can use it.
So i can say it's noob friendly :p good job Joopops
Joopie, I just noticed you spelt Development wrong in the Housekeeping ;)
It is a Development so i can make mistakes isnt :D
Posted via Mobile Device
They'll be no more editing posts except that of our own ^^ so plz stay on topic :p
Posted via Mobile Device
You just say that to answer on makarov's comment xD
Ontopic:
- Plugin installer
- Trigger installer + manager
- Template installer + chooser
- Coding plugins (Client, Account settings, Profile page)
If this is finished I'll release the first public version of it.
Planned release date: 31-12-2011
Last edited by Joopie; 15-12-11 at 06:01 PM.
Be a nice late christmas present, eh? ;3
Looking sexy Jos!
Or a new year present :3
Posted via Mobile Device
Small preview: Landing page - CustoMS - Thank to hejula.
There still a few bugs in it. But it will be fixed..
Thank you!, Just filter the POST and GET variables with a foreach xD
Added function:
Used to check if the needed data exists in a array.PHP Code:public static function CheckData($keys, $array)
{
$check = array_filter(array_keys($array), function ($key) use ($keys){
return in_array($key, $keys);
});
return count($check) == count($keys);
}
Example:
PHP Code:Request::CheckData(array('username', 'password', 'password_again', 'email'), $_POST);