Plugin tags updated

This commit is contained in:
dignajar 2016-01-22 16:27:53 -03:00
parent 2288075874
commit 925f6e4f92
9 changed files with 28 additions and 12 deletions

View File

@ -4,7 +4,7 @@
define('BLUDIT_VERSION', 'githubVersion'); define('BLUDIT_VERSION', 'githubVersion');
define('BLUDIT_CODENAME', ''); define('BLUDIT_CODENAME', '');
define('BLUDIT_RELEASE_DATE', ''); define('BLUDIT_RELEASE_DATE', '');
define('BLUDIT_BUILD', '20160121'); define('BLUDIT_BUILD', '20160122');
// Debug mode // Debug mode
define('DEBUG_MODE', TRUE); define('DEBUG_MODE', TRUE);

View File

@ -3,7 +3,7 @@
{ {
"native": "Español (Argentina)", "native": "Español (Argentina)",
"english-name": "Spanish", "english-name": "Spanish",
"last-update": "2015-10-02", "last-update": "2016-01-22",
"author": "Diego", "author": "Diego",
"email": "", "email": "",
"website": "" "website": ""

View File

@ -33,6 +33,7 @@ class pluginDisqus extends Plugin {
{ {
global $Page; global $Page;
global $Site; global $Site;
var_dump($Page);
if( $Site->homePage()==$Page->key() ) { if( $Site->homePage()==$Page->key() ) {
$this->disable = true; $this->disable = true;
} }

View File

@ -1,12 +1,7 @@
{ {
"plugin-data": "plugin-data":
{ {
"name": "RSS", "name": "RSS Feed",
"description": "This plugin generate a file rss.xml.", "description": "This plugin generate a RSS Feed for your site."
"author": "Bludit",
"email": "",
"website": "https://github.com/dignajar/bludit-plugins",
"version": "1.0",
"releaseDate": "2016-01-07"
} }
} }

View File

@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "RSS Feed",
"description": "Este plugin genera contenido RSS Feed para su sitio."
}
}

View File

@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Sitemap",
"description": "Este plugin genera un archivo sitemap.xml, el cual provee la lista de paginas de su sitio web, esto ayuda a los buscadores a organizar y filtrar contenido de su sitio web."
}
}

View File

@ -51,7 +51,7 @@ class pluginTags extends Plugin {
foreach($db as $tagKey=>$fields) foreach($db as $tagKey=>$fields)
{ {
$tagArray[] = array('tagKey'=>$tagKey, 'count'=>$dbTags->countPostsByTag($tagKey), 'name'=>ucfirst($fields['name'])); $tagArray[] = array('tagKey'=>$tagKey, 'count'=>$dbTags->countPostsByTag($tagKey), 'name'=>$fields['name']);
} }
// Sort the array based on options // Sort the array based on options

View File

@ -48,5 +48,8 @@
<!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/respond.min.js"></script><![endif]--> <!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/respond.min.js"></script><![endif]-->
<script src="<?php echo HTML_PATH_THEME ?>assets/js/main.js"></script> <script src="<?php echo HTML_PATH_THEME ?>assets/js/main.js"></script>
<!-- Plugins Site Body End -->
<?php Theme::plugins('siteBodyEnd') ?>
</body> </body>
</html> </html>

View File

@ -101,5 +101,8 @@ MIT license
<!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/respond.min.js"></script><![endif]--> <!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/respond.min.js"></script><![endif]-->
<script src="<?php echo HTML_PATH_THEME ?>assets/js/main.js"></script> <script src="<?php echo HTML_PATH_THEME ?>assets/js/main.js"></script>
<!-- Plugins Site Body End -->
<?php Theme::plugins('siteBodyEnd') ?>
</body> </body>
</html> </html>