1
novlang1984
Re: XOOPS 2.6.0 Alpha 1 Testing

Is a module would have his own extensions ? Tag, Social networks, "super admin" features, ...



2
novlang1984
Re: HOW-TO: Have different styles for each block individually and control title visibility through css

Thanks :)

For those who want more, take a look to Morphogenesis theme and especially blocks tpl
Quote:

nb : "<{$block.module}>-" is not very useful in my opinion



3
novlang1984
Re: Googlmaps and Xoops form

Great ! Thank again, that works



4
novlang1984
Re: .htaccess in uploads/ folder

Delete red parts (all related to CGI) and let us know
Quote:

# secure directory by disabling script execution
AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi .php5 .php4 .php3 .phps
Options -ExecCGI -Indexes



5
novlang1984
Re: Googlmaps and Xoops form

hello

Thanks again :)

But same Error message
Fatal errorCall to undefined function XoopsFormTextArea() in D:wampwwwmodulesgooglemapsadminindex.php on line 361

(line 361 is : XoopsFormTextArea('Description', 'html', 'Enter your description here', $rows = 8, $cols = 60);)



6
novlang1984
Re: News Module - Compatible with X3

hello

Quote:
XOOPS Council will never support FORKS

... why ?

It would be very important if one or two futur members of the Council will able two follow "X3" developments. What we need is PEACE :)




7
novlang1984
Re: Googlmaps and Xoops form

Thanks a lot, but debug mode says :
Call to undefined function XoopsFormTextArea() in D:wampwwwmodulesgooglemapsadminindex.php on line 360




8
novlang1984
Googlmaps and Xoops form

hello

I use Googlemaps with Xoops 2.5.1 and I would like to replace Xoops textarea form by the simpliest textarea (I mean a simple field to enter my descriptions, without Xoops buttons on the top and smilies on the bottom).

I've found this part of code (admin/index.php)
echo ""._MD_DESCRIPTIONC."";
    echo 
"";    
    
xoopsCodeTarea("html",60,8);
    
xoopsSmilies("html");
        echo 
"n";


Is there something simple replace XoopsForm ?

Tx in advance :)



9
novlang1984
Re: Pagination in Articles modules

See class/pagenav.php, you can choose :
- txt navigation
- img navigation
- dropdown list navigation

/**
     * Create text navigation
     *
     * @param integer $offset
     * @return string
     */
    
function renderNav($offset 4)
    {
        
$ret '';
        if (
$this->total <= $this->perpage) {
            return 
$ret;
        }
        
$total_pages ceil($this->total $this->perpage);
        if (
$total_pages 1) {
            
$ret .= '';
            
$prev $this->current $this->perpage;
            if (
$prev >= 0) {
                
$ret .= '$this->url $prev $this->extra '">« ';
            }
            
$counter 1;
            
$current_page intval(floor(($this->current $this->perpage) / $this->perpage));
            while (
$counter <= $total_pages) {
                if (
$counter == $current_page) {
                    
$ret .= '(' $counter ') ';
                } elseif ((
$counter $current_page $offset && $counter $current_page $offset) || $counter == || $counter == $total_pages) {
                    if (
$counter == $total_pages && $current_page $total_pages $offset) {
                        
$ret .= '... ';
                    }
                    
$ret .= '$this->url . (($counter 1) * $this->perpage) . $this->extra '">' $counter ' ';
                    if (
$counter == && $current_page $offset) {
                        
$ret .= '... ';
                    }
                }
                
$counter ++;
            }
            
$next $this->current $this->perpage;
            if (
$this->total $next) {
                
$ret .= '$this->url $next $this->extra '">» ';
            }
            
$ret .= '
 ';
        }
        return 
$ret;
    }
    
    
/**
     * Create a navigational dropdown list
     *
     * @param boolean $showbutton Show the "Go" button?
     * @return string
     */
    
function renderSelect($showbutton false)
    {
        if (
$this->total $this->perpage) {
            return;
        }
        
$total_pages ceil($this->total $this->perpage);
        
$ret '';
        if (
$total_pages 1) {
            
$ret '';
            
$ret .= '';
            
$counter 1;
            
$current_page intval(floor(($this->current $this->perpage) / $this->perpage));
            while (
$counter <= $total_pages) {
                if (
$counter == $current_page) {
                    
$ret .= '$this->url . (($counter 1) * $this->perpage) . $this->extra '" selected="selected">' $counter '';
                } else {
                    
$ret .= '$this->url . (($counter 1) * $this->perpage) . $this->extra '">' $counter '';
                }
                
$counter ++;
            }
            
$ret .= '';
            if (
$showbutton) {
                
$ret .= _GO '" />';
            }
            
$ret .= '';
        }
        return 
$ret;
    }
    
    
/**
     * Create navigation with images
     *
     * @param integer $offset
     * @return string
     */
    
function renderImageNav($offset 4)
    {
        if (
$this->total $this->perpage) {
            return;
        }
        
$total_pages ceil($this->total $this->perpage);
        
$ret '';
        if (
$total_pages 1) {
            
$ret '';
            
$prev $this->current $this->perpage;
            if (
$prev >= 0) {
                
$ret .= '$this->url $prev $this->extra '"><';
            } else {
                
$ret .= '';
            }
            
$counter 1;
            
$current_page intval(floor(($this->current $this->perpage) / $this->perpage));
            while (
$counter <= $total_pages) {
                if (
$counter == $current_page) {
                    
$ret .= '$counter '';
                } elseif ((
$counter $current_page $offset && $counter $current_page $offset) || $counter == || $counter == $total_pages) {
                    if (
$counter == $total_pages && $current_page $total_pages $offset) {
                        
$ret .= '...';
                    }
                    
$ret .= '$this->url . (($counter 1) * $this->perpage) . $this->extra '">' $counter '';
                    if (
$counter == && $current_page $offset) {
                        
$ret .= '...';
                    }
                }
                
$counter ++;
            }
            
$next $this->current $this->perpage;
            if (
$this->total $next) {
                
$ret .= '
$this->url $next $this->extra '">>';
            } else {
                
$ret .= '
';
            }
            
$ret .= '
XOOPS_URL '/images/blank.gif" width="6" alt="" />XOOPS_URL '/images/blank.gif" width="6" alt="" />XOOPS_URL '/images/blank.gif" width="6" alt="" />XOOPS_URL '/images/blank.gif" width="6" alt="" />
'
;
        }
        return 
$ret;
    }
}



10
novlang1984
Re: Random Photo Block In Myalbum 2,91b

hhttp://luciorota.altervista.org/xoops/modules/wfdownloads/viewcat.php?start=10&cid=2

Make a backup of your site, before upgrading to X2.51. Not sure that myAlbum still works




TopTop
(1) 2 3 4 ... 10 »



Login

Who's Online

412 user(s) are online (155 user(s) are browsing Support Forums)


Members: 0


Guests: 412


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