-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Colocando todos os arquivos no GitHub
- Loading branch information
Showing
226 changed files
with
69,216 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
/** | ||
* Front to the WordPress application. This file doesn't do anything, but loads | ||
* wp-blog-header.php which does and tells WordPress to load the theme. | ||
* | ||
* @package WordPress | ||
*/ | ||
|
||
/** | ||
* Tells WordPress to load the WordPress theme and output it. | ||
* | ||
* @var bool | ||
*/ | ||
define('WP_USE_THEMES', true); | ||
|
||
/** Loads the WordPress Environment and Template */ | ||
require( dirname( __FILE__ ) . '/wp-blog-header.php' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<?php | ||
/** | ||
* Confirms that the activation key that is sent in an email after a user signs | ||
* up for a new site matches the key for that user and then displays confirmation. | ||
* | ||
* @package WordPress | ||
*/ | ||
|
||
define( 'WP_INSTALLING', true ); | ||
|
||
/** Sets up the WordPress Environment. */ | ||
require( dirname(__FILE__) . '/wp-load.php' ); | ||
|
||
require( dirname( __FILE__ ) . '/wp-blog-header.php' ); | ||
|
||
if ( !is_multisite() ) { | ||
wp_redirect( wp_registration_url() ); | ||
die(); | ||
} | ||
|
||
if ( is_object( $wp_object_cache ) ) | ||
$wp_object_cache->cache_enabled = false; | ||
|
||
// Fix for page title | ||
$wp_query->is_404 = false; | ||
|
||
/** | ||
* Fires before the Site Activation page is loaded. | ||
* | ||
* @since 3.0.0 | ||
*/ | ||
do_action( 'activate_header' ); | ||
|
||
/** | ||
* Adds an action hook specific to this page that fires on wp_head | ||
* | ||
* @since MU | ||
*/ | ||
function do_activate_header() { | ||
/** | ||
* Fires before the Site Activation page is loaded, but on the wp_head action. | ||
* | ||
* @since 3.0.0 | ||
*/ | ||
do_action( 'activate_wp_head' ); | ||
} | ||
add_action( 'wp_head', 'do_activate_header' ); | ||
|
||
/** | ||
* Loads styles specific to this page. | ||
* | ||
* @since MU | ||
*/ | ||
function wpmu_activate_stylesheet() { | ||
?> | ||
<style type="text/css"> | ||
form { margin-top: 2em; } | ||
#submit, #key { width: 90%; font-size: 24px; } | ||
#language { margin-top: .5em; } | ||
.error { background: #f66; } | ||
span.h3 { padding: 0 8px; font-size: 1.3em; font-weight: bold; } | ||
</style> | ||
<?php | ||
} | ||
add_action( 'wp_head', 'wpmu_activate_stylesheet' ); | ||
|
||
get_header( 'wp-activate' ); | ||
?> | ||
|
||
<div id="signup-content" class="widecolumn"> | ||
<div class="wp-activate-container"> | ||
<?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?> | ||
|
||
<h2><?php _e('Activation Key Required') ?></h2> | ||
<form name="activateform" id="activateform" method="post" action="<?php echo network_site_url('wp-activate.php'); ?>"> | ||
<p> | ||
<label for="key"><?php _e('Activation Key:') ?></label> | ||
<br /><input type="text" name="key" id="key" value="" size="50" /> | ||
</p> | ||
<p class="submit"> | ||
<input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e('Activate') ?>" /> | ||
</p> | ||
</form> | ||
|
||
<?php } else { | ||
|
||
$key = !empty($_GET['key']) ? $_GET['key'] : $_POST['key']; | ||
$result = wpmu_activate_signup( $key ); | ||
if ( is_wp_error($result) ) { | ||
if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) { | ||
$signup = $result->get_error_data(); | ||
?> | ||
<h2><?php _e('Your account is now active!'); ?></h2> | ||
<?php | ||
echo '<p class="lead-in">'; | ||
if ( $signup->domain . $signup->path == '' ) { | ||
printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() ); | ||
} else { | ||
printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() ); | ||
} | ||
echo '</p>'; | ||
} else { | ||
?> | ||
<h2><?php _e('An error occurred during the activation'); ?></h2> | ||
<?php | ||
echo '<p>'.$result->get_error_message().'</p>'; | ||
} | ||
} else { | ||
$url = isset( $result['blog_id'] ) ? get_blogaddress_by_id( (int) $result['blog_id'] ) : ''; | ||
$user = get_userdata( (int) $result['user_id'] ); | ||
?> | ||
<h2><?php _e('Your account is now active!'); ?></h2> | ||
|
||
<div id="signup-welcome"> | ||
<p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p> | ||
<p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $result['password']; ?></p> | ||
</div> | ||
|
||
<?php if ( $url && $url != network_home_url( '', 'http' ) ) : | ||
switch_to_blog( (int) $result['blog_id'] ); | ||
$login_url = wp_login_url(); | ||
restore_current_blog(); | ||
?> | ||
<p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) ); ?></p> | ||
<?php else: ?> | ||
<p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p> | ||
<?php endif; | ||
} | ||
} | ||
?> | ||
</div> | ||
</div> | ||
<script type="text/javascript"> | ||
var key_input = document.getElementById('key'); | ||
key_input && key_input.focus(); | ||
</script> | ||
<?php get_footer( 'wp-activate' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
/** | ||
* Loads the WordPress environment and template. | ||
* | ||
* @package WordPress | ||
*/ | ||
|
||
if ( !isset($wp_did_header) ) { | ||
|
||
$wp_did_header = true; | ||
|
||
// Load the WordPress library. | ||
require_once( dirname(__FILE__) . '/wp-load.php' ); | ||
|
||
// Set up the WordPress query. | ||
wp(); | ||
|
||
// Load the theme template. | ||
require_once( ABSPATH . WPINC . '/template-loader.php' ); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
/** | ||
* Handles Comment Post to WordPress and prevents duplicate comment posting. | ||
* | ||
* @package WordPress | ||
*/ | ||
|
||
if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) { | ||
header('Allow: POST'); | ||
header('HTTP/1.1 405 Method Not Allowed'); | ||
header('Content-Type: text/plain'); | ||
exit; | ||
} | ||
|
||
/** Sets up the WordPress Environment. */ | ||
require( dirname(__FILE__) . '/wp-load.php' ); | ||
|
||
nocache_headers(); | ||
|
||
$comment = wp_handle_comment_submission( wp_unslash( $_POST ) ); | ||
if ( is_wp_error( $comment ) ) { | ||
$data = intval( $comment->get_error_data() ); | ||
if ( ! empty( $data ) ) { | ||
wp_die( '<p>' . $comment->get_error_message() . '</p>', __( 'Comment Submission Failure' ), array( 'response' => $data, 'back_link' => true ) ); | ||
} else { | ||
exit; | ||
} | ||
} | ||
|
||
$user = wp_get_current_user(); | ||
|
||
/** | ||
* Perform other actions when comment cookies are set. | ||
* | ||
* @since 3.4.0 | ||
* | ||
* @param WP_Comment $comment Comment object. | ||
* @param WP_User $user User object. The user may not exist. | ||
*/ | ||
do_action( 'set_comment_cookies', $comment, $user ); | ||
|
||
$location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID; | ||
|
||
/** | ||
* Filter the location URI to send the commenter after posting. | ||
* | ||
* @since 2.0.5 | ||
* | ||
* @param string $location The 'redirect_to' URI sent via $_POST. | ||
* @param WP_Comment $comment Comment object. | ||
*/ | ||
$location = apply_filters( 'comment_post_redirect', $location, $comment ); | ||
|
||
wp_safe_redirect( $location ); | ||
exit; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?php | ||
/** | ||
* As configurações básicas do WordPress. | ||
* | ||
* Esse arquivo contém as seguintes configurações: configurações de MySQL, Prefixo de Tabelas, | ||
* Chaves secretas, Idioma do WordPress, e ABSPATH. Você pode encontrar mais informações | ||
* visitando {@link http://codex.wordpress.org/Editing_wp-config.php Editing | ||
* wp-config.php} Codex page. Você pode obter as configurações de MySQL de seu servidor de hospedagem. | ||
* | ||
* Esse arquivo é usado pelo script ed criação wp-config.php durante a | ||
* instalação. Você não precisa usar o site, você pode apenas salvar esse arquivo | ||
* como "wp-config.php" e preencher os valores. | ||
* | ||
* @package WordPress | ||
*/ | ||
|
||
// ** Configurações do MySQL - Você pode pegar essas informações com o serviço de hospedagem ** // | ||
/** O nome do banco de dados do WordPress */ | ||
define('DB_NAME', 'nome_do_banco_de_dados'); | ||
|
||
/** Usuário do banco de dados MySQL */ | ||
define('DB_USER', 'nome_de_usuario_aqui'); | ||
|
||
/** Senha do banco de dados MySQL */ | ||
define('DB_PASSWORD', 'senha_aqui'); | ||
|
||
/** nome do host do MySQL */ | ||
define('DB_HOST', 'localhost'); | ||
|
||
/** Conjunto de caracteres do banco de dados a ser usado na criação das tabelas. */ | ||
define('DB_CHARSET', 'utf8'); | ||
|
||
/** O tipo de collate do banco de dados. Não altere isso se tiver dúvidas. */ | ||
define('DB_COLLATE', ''); | ||
|
||
/**#@+ | ||
* Chaves únicas de autenticação e salts. | ||
* | ||
* Altere cada chave para um frase única! | ||
* Você pode gerá-las usando o {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} | ||
* Você pode alterá-las a qualquer momento para desvalidar quaisquer cookies existentes. Isto irá forçar todos os usuários a fazerem login novamente. | ||
* | ||
* @since 2.6.0 | ||
*/ | ||
define('AUTH_KEY', 'altere cada chave para um frase única'); | ||
define('SECURE_AUTH_KEY', 'altere cada chave para um frase única'); | ||
define('LOGGED_IN_KEY', 'altere cada chave para um frase única'); | ||
define('NONCE_KEY', 'altere cada chave para um frase única'); | ||
define('AUTH_SALT', 'altere cada chave para um frase única'); | ||
define('SECURE_AUTH_SALT', 'altere cada chave para um frase única'); | ||
define('LOGGED_IN_SALT', 'altere cada chave para um frase única'); | ||
define('NONCE_SALT', 'altere cada chave para um frase única'); | ||
|
||
/**#@-*/ | ||
|
||
/** | ||
* Prefixo da tabela do banco de dados do WordPress. | ||
* | ||
* Você pode ter várias instalações em um único banco de dados se você der para cada um um único | ||
* prefixo. Somente números, letras e sublinhados! | ||
*/ | ||
$table_prefix = 'wp_'; | ||
|
||
|
||
/** | ||
* Para desenvolvedores: Modo debugging WordPress. | ||
* | ||
* altere isto para true para ativar a exibição de avisos durante o desenvolvimento. | ||
* é altamente recomendável que os desenvolvedores de plugins e temas usem o WP_DEBUG | ||
* em seus ambientes de desenvolvimento. | ||
*/ | ||
define('WP_DEBUG', false); | ||
|
||
/* Isto é tudo, pode parar de editar! :) */ | ||
|
||
/** Caminho absoluto para o diretório WordPress. */ | ||
if ( !defined('ABSPATH') ) | ||
define('ABSPATH', dirname(__FILE__) . '/'); | ||
|
||
/** Configura as variáveis do WordPress e arquivos inclusos. */ | ||
require_once(ABSPATH . 'wp-settings.php'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?php | ||
// Silence is golden. |
Binary file not shown.
Oops, something went wrong.