mirror of
https://github.com/e107inc/e107.git
synced 2025-07-29 10:50:25 +02:00
Added 'checkall' box at top of column - but suspect api needs adjustment
This commit is contained in:
@@ -9,8 +9,8 @@
|
|||||||
* Form Handler
|
* Form Handler
|
||||||
*
|
*
|
||||||
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
|
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
|
||||||
* $Revision: 1.36 $
|
* $Revision: 1.37 $
|
||||||
* $Date: 2009-07-17 07:53:13 $
|
* $Date: 2009-07-21 16:05:10 $
|
||||||
* $Author: e107coders $
|
* $Author: e107coders $
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -671,6 +671,7 @@ class e_form
|
|||||||
$text .= $val['title'];
|
$text .= $val['title'];
|
||||||
$text .= ($val['url']) ? "</a>" : "";
|
$text .= ($val['url']) ? "</a>" : "";
|
||||||
$text .= ($key == "options") ? $this->columnSelector($fieldarray,$columnPref) : "";
|
$text .= ($key == "options") ? $this->columnSelector($fieldarray,$columnPref) : "";
|
||||||
|
$text .= ($key == "checkboxes") ? $this->checkbox_toggle('e-column-toggle',$val['toggle']) : "";
|
||||||
|
|
||||||
|
|
||||||
$text .= "</th>";
|
$text .= "</th>";
|
||||||
|
@@ -11,8 +11,8 @@
|
|||||||
| GNU General Public License (http://gnu.org).
|
| GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_plugins/download/handlers/adminDownload_class.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/download/handlers/adminDownload_class.php,v $
|
||||||
| $Revision: 1.10 $
|
| $Revision: 1.11 $
|
||||||
| $Date: 2009-07-19 20:25:03 $
|
| $Date: 2009-07-21 16:05:11 $
|
||||||
| $Author: e107coders $
|
| $Author: e107coders $
|
||||||
|
|
|
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
@@ -222,7 +222,7 @@ class adminDownload extends download
|
|||||||
$sort_link = $sortdirection == 'asc' ? 'desc' : 'asc';
|
$sort_link = $sortdirection == 'asc' ? 'desc' : 'asc';
|
||||||
|
|
||||||
$columnInfo = array(
|
$columnInfo = array(
|
||||||
"checkboxes" => array("title" => "", "forced"=> TRUE, "width" => "3%", "thclass" => "center first", "url" => ""),
|
"checkboxes" => array("title" => "", "forced"=> TRUE, "width" => "3%", "thclass" => "center first", "toggle" => "dl_selected"),
|
||||||
"download_id" => array("title"=>DOWLAN_67, "type"=>"", "width"=>"auto", "thclass"=>"", "forced"=>true),
|
"download_id" => array("title"=>DOWLAN_67, "type"=>"", "width"=>"auto", "thclass"=>"", "forced"=>true),
|
||||||
"download_name" => array("title"=>DOWLAN_12, "type"=>"", "width"=>"auto", "thclass"=>""),
|
"download_name" => array("title"=>DOWLAN_12, "type"=>"", "width"=>"auto", "thclass"=>""),
|
||||||
"download_url" => array("title"=>DOWLAN_13, "type"=>"", "width"=>"auto", "thclass"=>""),
|
"download_url" => array("title"=>DOWLAN_13, "type"=>"", "width"=>"auto", "thclass"=>""),
|
||||||
|
Reference in New Issue
Block a user