Chào các bạn , mình là người mới mình có vấn đề như thế này khi sử dụng Joomla :
Mình có viết 1 com_lienhe như sau để thử tính năng của Joomla như nó không hoạt động như ý muốn :
+admin.lienhe.php
Code:
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
$task = JRequest::getCmd('task');
print "abc".$task;
switch ($task)
{
case 'add':
print "Test";
break;
default:
print "Demo";
break;
}
?>
+toolbar.lienhe.php
Code:
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class TOOLBAR_lienhe
{
function _DEFAULT(){
JToolBarHelper::title(JText::_('Hello world'));
JToolBarHelper::addNew();
JToolBarHelper::editList();
JToolBarHelper::deleteList();
JToolBarHelper::publish();
JToolBarHelper::unpublish();
}
function _New(){
JToolBarHelper::save();
JToolBarHelper::apply();
JToolBarHelper::cancel();
}
}
?>
admin.lienhe.php
Code:
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
$task = JRequest::getCmd('task');
print "abc".$task;
switch ($task)
{
case 'add':
print "Test";
break;
default:
print "Demo";
break;
}
?>
Vấn đề xảy ra là khi mình bấm ào nút New tại sao nó ko nhảy vào phần sử lí của nút NEW .... Thông cảm mình mới làm quen với Joomla ...