Hello ragezone,
Im buizy with a new project, but let me tell you something first.
Hi, my name is Wesley, i'm a 14 year old developer with alot of fantasy.
So, a couple days ago, i was smoking my morning cigarette, and i thought:
"If you look between all habbo retros, there are some sick ones, and if u have the cms, it's awesome, but if i want a forum in it, then i'll have to script it, or when i want a radio, i'll have to script it"
So a couple days ago, the idea came up to make a CMS witch is going to run plug-ins trough a API...
So, here i'm now, making a post on RageZone...
_________________________________________________________________________________
Oke, so let's get to the point:
RavvaCMS ~ Nothing's impossible
Okay, let's see some functions:
Spoiler:
- There will be multitiple themes, witch you will be able to switch to from the HouseKeeping.
- There will be 2 downloads: (1). A Noobfrendly version, this one will be compressed
(2). Developers version, this one is uncompressed,
The big diffrence between those two is that in the noobfriendly version 1 single configuration is, and that one takes care of EVERYTHING, In the develop version will it be just like how we make it, because thats easyer for developers,
-There will be multitiple database/emulator support,
- And ofcourse the plug-ins, so you drag them into the folder "Plugins" and it installs automaticly,
So you drag like a webshop file into the folder, and 5 mins later, you have a webshop! Nice, isn't it?
class addon_AddOnNaam extends AddonAPI::BaseModule {
$this->set('name', 'Mijn eerste test-addon');
$this->set('version', '2.7');
$this->set('author', 'Je naam');
$API = new AddonAPI;
$API->CMS->LANGUAGE->AddString('nl', 'addonnaam.stringnaam', 'Waarde van string');
$API->CMS->Housekeeping->AddPage('Pagina-naam', 'Paginaomschrijving', 'Handler-naam (meer uitleg komt nog)', 'inhoud voor pagina. Gebruik $_LANG['nl']['taalregel'] voor de tekts die je ingestled hebt.');
}
?>
Configuration:
Spoiler:
PHP Code:
<?php
# Here you can modify the MySQL Connection configuration settings.
# The MySQL-Server IP or Hostname
$_CONFIG['mysql']['hostname'] = 'localhost';
# The MySQL-Server Username
$_CONFIG['mysql']['username'] = 'root';
# The MySQL-Server Password
$_CONFIG['mysql']['password'] = 'my_password';
# The MySQL-Server Database
$_CONFIG['mysql']['database'] = 'ravvacms_database';
So yeah, thats pretty mutch it for today, if you have any ideas, or something, just put it in a reaction guys!
Nice. I'm the lead developer of this project.
We currently have troubles with the server, but, tomorrow, we can show you a preview. THIS PREVIEW IS LIMITED: You only can view the index and news page. Everything except that is blocked
class addon_AddOnNaam extends AddonAPI::BaseModule { $this->set('name', 'Mijn eerste test-addon'); $this->set('version', '2.7'); $this->set('author', 'Je naam');
$API = new AddonAPI;
$API->CMS->LANGUAGE->AddString('nl', 'addonnaam.stringnaam', 'Waarde van string');
$API->CMS->Housekeeping->AddPage('Pagina-naam', 'Paginaomschrijving', 'Handler-naam (meer uitleg komt nog)', 'inhoud voor pagina. Gebruik $_LANG['nl']['taalregel'] voor de tekts die je ingestled hebt.'); }
class addon_AddOnNaam extends AddonAPI::BaseModule {
$this->set('name', 'Mijn eerste test-addon');
$this->set('version', '2.7');
$this->set('author', 'Je naam');
$API = new AddonAPI;
$API->CMS->LANGUAGE->AddString('nl', 'addonnaam.stringnaam', 'Waarde van string');
$API->CMS->Housekeeping->AddPage('Pagina-naam', 'Paginaomschrijving', 'Handler-naam (meer uitleg komt nog)', 'inhoud voor pagina. Gebruik $_LANG['nl']['taalregel'] voor de tekts die je ingestled hebt.');
}