(4 Sep, 2010, 6:42 am)Gypaete escribió: Más o menos gracias .
Mira te explico.
Es casi lo mismo que el php el [ PHP ] Lo que hace es ordenar y darle estilo a las funciones principales que determinan este lenguaje. Ejemplo:
<?php
/*
Plugin Online24
(c) 2008 by MyBBCentral.com Jesse Labrocca
Website:
http://www.mybbcentral.com
*/
define("IN_MYBB", 1);
$plugins->add_hook('index_start', 'online24');
function online24_info() {
return array(
"name" => "Online 24",
"description" => "Displays the stats on index for users online in past 24 hours.",
"website" => "http://mybbcentral.com/",
"author" => "Jesse Labrocca",
"authorsite" => "http://www.hackforums.net/",
"version" => "2.2",
"compatibility" => "14*"
);
}
function online24_activate() {
global $db, $mybb;
$template1 = array(
"title" => "online24_index",
"template" => "<tr>
<td class=\"tcat\"><strong>{\$lang->whos_online_today}</strong> [<a href=\"online.php?action=today\">{\$lang->complete_list}</a>]</td>
</tr>
<tr>
<td class=\"trow1\"><span class=\"smalltext\">{\$lang->members_today}{\$membercount}, {\$lang->guests_today}{\$guestcount}, {\$lang->bots_today}{\$botcount}, {\$lang->anon_today}{\$anoncount}<br />{\$onlinemembers}</span></td>
</tr>",
"sid" => -1,
"version" => "1.0",
"dateline" => time(),
);
$db->insert_query("templates", $template1);
require MYBB_ROOT."/inc/adminfunctions_templates.php";
find_replace_templatesets('index_boardstats', '#{\$whosonline}#', "{\$whosonline}\n{\$online24}");
}
--Ahora le daremos estilo php a este codigo incompleto de php;
Código PHP:
<?php
/*
Plugin Online24
(c) 2008 by MyBBCentral.com Jesse Labrocca
Website: http://www.mybbcentral.com
*/
define("IN_MYBB", 1);
$plugins->add_hook('index_start', 'online24');
function online24_info() {
return array(
"name" => "Online 24",
"description" => "Displays the stats on index for users online in past 24 hours.",
"website" => "http://mybbcentral.com/",
"author" => "Jesse Labrocca",
"authorsite" => "http://www.hackforums.net/",
"version" => "2.2",
"compatibility" => "14*"
);
}
function online24_activate() {
global $db, $mybb;
Ahora vamonos al CPP que es lo mismo pero envez del lenguaje php se basa en C y C++ osea le da formato y estilo a las funciones principales de este lenguaje.
Asi cuando estes programando en c o c++ se te ara mas facil y mas ordenado.