Introducing the new site for Common Utilities

I want to introduce you the new Common Utilities web site, created to provide information about the module and a fixed point for distribution. Resized Image
This site has been created using GitHub pages and its construction still is in progress. Visit rmcommon.com Visit the project on GitHub
Read more... | 9 comments

QuickPages 2.0 RC available for download!

Resized Image


Eduardo Cortés (aka BitC3R0) has just released QuickPages 2.0 RC for XOOPS 2.5.7

QuickPages module belongs to a new generation of modules for XOOPS based on Common Utilities. This allows you to better utilize all the cool features currently provided by XOOPS and the power and beauty offered by Common Utilities.

QuickPages allows you to create semi-static pages easily and quickly. It is ideal for Landing Pages, Sales Pages and any other Marketing site. You can create a single or a few pages, or even a full Website.

QuickPages support templates for every page. That means that you can provide to your pages an incredible appearance and functionallity.

These are some of the QuickPages features:

- Single pages
- Home pages
- Standalone pages
- Categories organization
- Templates for pages





Requirements:

XOOPS 2.5.6 or 2.5.7
Common Utilities 2.2
AdvancedForms for Common Utilities

Installation;

Install QuickPages normally, as any other module for XOOPS and Common Utilities.

Download: click here
Comments?

Common Utilities 2.2.7.5 for XOOPS 2.5.7 released

Resized Image


Eduardo Cortés (aka BitC3R0) has just released Common Utilities 2.2.7.5 for XOOPS 2.5.7

As every creation of Eduardo, this module is an amazing work! There are too many fantastic features to mention, but some that are really cool are:

- One-Click Updates
- URL Rewriting
- Form Fields
- Custom Codes
- Configuration System
- in-Line Docs
- Plugins Support





This module is for the current XOOPS 2.5.7, but the most important news is that Eduardo is starting to integrate the visual behavior of Common Utilities to XOOPS 2.6.0 !!!

Once ported to XOOPS 2.6.0, you can consider it as the "Presentation Layer" for XOOPS 2.6.0! The plan is to use it as the foundation for all future modules of XOOPS 2.6.0+. Combined with all the great work done on XOOPS 2.6.0 Core by Richard (Geekwright), and previously by Nicolas (ForMuss) and Ricardo (Trabis), this will be a XOOPS like never seen before.

So go and check it out on your XOOPS 2.5.7, let us know if you like the direction XOOPS is heading!

Download: click here
Comments?

Visualization of XOOPS 2.6.0 development on GitHub: One year in 45 seconds

Gource is a software version control visualization tool, and it can create very cool videos showing the development over time.

Software projects are displayed by Gource as an animated tree with the root directory of the project at its centre. Directories appear as branches with files as leaves. Developers can be seen working on the tree at the times they contributed to the project.

Below you can see the XOOPS 2.6.0 development on GitHub: one year in 45 seconds




Comments?

XOOPS supports "Hour of Code" (Dec. 8 - 14, 2014)

Join the Hour of Code December 8 - 14, 2014

The Hour of Code is a global movement reaching tens of millions of students in 180+ countries. Anyone, anywhere can organize an Hour of Code event. One-hour tutorials are available in over 30 languages. No experience needed. Ages 4 to 104.
Last year hundreds of organizations joined together to create fun introductions to programming for all to learn. This year the goal is to get 100 million participants from all across the globe.

Let's make sure that ALL schools where you live are represented, and all children have the opportunity to have their "Hour of Code"

If you organize an "Hour of Code" event, or volunteer for one, please share it here with us!



Comments?

XOOPS domain www.xoops.org donated to XOOPS Foundation

We are happy to share with you that the founder of XOOPS, Mr. Kazu Ono (aka Onokazu) has donated the XOOPS domain (http://www.xoops.org) to XOOPS Foundation!

The XOOPS Council appreciates very much his trust in the current team, and we can only reiterate our full committment and dedication to keep the Open Source ideals and spirit alive in XOOPS!

We also would like to thank Mr. Kazu Ono for all his leadership, dedication, and vision for XOOPS over all these years! He is a true giant of programming and we feel honored to be able to carry on the legacy of the original founders of XOOPS!

Viva XOOPS!

Read more... | 1 comment

Excellent Tutorial in Spanish: Adapting HTML and CSS Templates to XOOPS

Tony Rod has published an excellent video tutorial about "Adapting HTML and CSS Templates to XOOPS":





This is what he writes in his blog:

XOOPS has always been known for being a powerful and flexible CMS, however despite this, the creation of my own themes without relying on already available themes for XOOPS was always of interest to me, especially since the available themes were very similar with the same structure.

That's why a few years ago I challenged myself to learn how a template works in XOOPS and what is needed to develop a different theme that suits my needs and above all, has a unique design .

I finally found the answer and that is why now I share what I've learned over the years using XOOPS, and hopefully it will help all those who want a unique and different design without having to worry about whether they are doing it the right or wrong way when adapting the template to XOOPS.

Basically this tutorial is divided into four sections which are:

- Introduction and basics of templates in XOOPS
- Process of adapting a template in HTML to XOOPS
- Multiple templates on our site using Defacer
- Adding blocks manually by ID

The tutorial is designed in such a way that you can follow step by step the whole process from the adaptation of the template to the finished product. To make it easier for you, I am providing the course material so you can do the necessary tests. This material can be found on the download section of downloads or by clicking here.

I hope this tutorial is helpful to start designing your own templates and will inspire those who want to improve the content of their websites.

I will answer all your questions and / or comments in the comments section of this publication.
Read more... | 4 comments

Headline News Publisher

Resized Image


theme.html Code :
<link href="<{xoImgUrl css/mansetx.css}>" type="text/css" rel="stylesheet" />  
<
script type="text/javascript" src="<{xoImgUrl js/mansetx.js}>">script>
<
script type="text/javascript" src="<{xoImgUrl js/jquery-1.11.1.js}>">script>


theme.html add :

<{includeq file="$theme_name/slidetpublisher.html"}>



slidetpublisher.html code :

<{php}>
include_once 
XOOPS_ROOT_PATH '/modules/publisher/include/common.php';
$publisher =& PublisherPublisher::getInstance();
$myts =& MyTextSanitizer::getInstance();
$itemsObj $publisher->getHandler('item')->getItems($limit 6$start 0, array(_PUBLISHER_STATUS_PUBLISHED), -1$sort 'datesub'$order='DESC'''true$criteria nulltrue);
$totalItems count($itemsObj);

global 
$items;
$items = array();
if (
$itemsObj) {
        for ( 
$i 0$i $totalItems$i++ ) {

            
$newItems['itemid']       = $itemsObj[$i]->itemid();
            
$newItems['title']        = $itemsObj[$i]->title();
            
$newItems['body']         = $itemsObj[$i]->body();
            
$newItems['votes']        = $itemsObj[$i]->votes();
            
$newItems['image']        = XOOPS_URL '/uploads/blank.gif';
            
$images $itemsObj[$i]->getImages();
            if (
is_object($images['main'])) {
                
$newItems['image'] = XOOPS_URL '/uploads/' $images['main']->getVar('image_name');
            }
        
$items[] = $newItems;
    }
}
<{/
php}>
        <
div id="mansetx">
            <{
php}>
        foreach ( 
$GLOBALS['items'] as $myrow )
        {
        
$GLOBALS['xoopsTpl']->assign('itemid'$myrow['itemid']);
        
$GLOBALS['xoopsTpl']->assign('title'$myrow['title']);
        
$GLOBALS['xoopsTpl']->assign('body'$myrow['body']);
        
$GLOBALS['xoopsTpl']->assign('votes'$myrow['votes']);
        
$GLOBALS['xoopsTpl']->assign('image'$myrow['image']);
<{/
php}>
        <
div id="mansetx-img">
            <
a href="<{$xoops_url}>/modules/publisher/item.php?itemid=<{$itemid}>"><img width="720" height="315" src="<{$image}>">a>
        div>
         <{
php}>
        }
<{/
php}> 
        <
div id="mansetx-selector">
            <
ul>
            ul>
        div>
div>


Demo :

http://estetikameliyatmerkezi.com/xoopson/

Hasta Yatakları
Read more... | 3 comments

Facebook comments added to Publisher module version 1.02

Hi,
I did it, I added the fecebook comment in publisher module version 1.02

1. I Work with publisher version 1.02
2. and the theme xbootstrap version 1.02
3. I have to prepare a winzip if you want

If you want to see how it looks, takes a look here
CLICK HERE

Regards
DAVID

Resized Image
Read more... | 2 comments

Theme Sd-099-Theme-Surprice - for free

Sinnedesign is happy to present the new FREE XOOPS Theme with the name Free Design Sd-099-Theme-Surprice. The Free XOOPS - Theme was made with friendly help from Easyname .

Resized Image


Here can you find the XOOPS 2.5 Theme Demo.

Xoops 2.5 Demo

FREE - Download Xoops Theme Sd-099-Theme-Surprice

Here is the direct Download - Link (without registration)

Nice Weekend and happy XOOPsing!
Comments?
« 1 ... 6 7 8 (9) 10 11 12 ... 553 »


Login

Who's Online

846 user(s) are online (4 user(s) are browsing XOOPS News)


Members: 0


Guests: 846


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Jul 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits

Archives

News archives