Initial checkin
This commit is contained in:
commit
d75eb444fc
4304 changed files with 369634 additions and 0 deletions
142
modules/news/admin/add.apnl.php
Normal file
142
modules/news/admin/add.apnl.php
Normal file
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
/**
|
||||
* Project: astat - simple site engine
|
||||
* File: /modules/news/add.apnl.php
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* @link http://www.astat.org SVN: $URL: file:///var/local/svn/astat/trunk/modules/news/admin/add.apnl.php $
|
||||
* @copyright 2009 becast.at
|
||||
* @author Bernhard Jaud <bernhard at becast dot at>
|
||||
* @package astat core
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
* @version $Id: add.apnl.php 96 2010-02-17 21:56:41Z genuineparts $
|
||||
*/
|
||||
If (!defined("in_BL_ADMIN")) {
|
||||
die("Dieses Script kann nicht ausserhalb des Frameworks laufen!");
|
||||
}
|
||||
$session->page_begin("add News", True);
|
||||
|
||||
class add_news_panel extends admin_module{
|
||||
|
||||
function output(){
|
||||
global $config, $db,$panel, $session;
|
||||
$fail=FALSE;
|
||||
if(isset($_POST['send'])&& $_POST['send']==1){
|
||||
if(isset($_POST['text'])&& $_POST['text']!=""||isset($_POST['title'])&& $_POST['title']!=""){
|
||||
$title=$db->escape($_POST['title']);
|
||||
$db->query("INSERT INTO `" . $config["prefix"] . "news` (`text`,`date`,`author`,`category`,`title`,`active`) VALUES ('".$db->escape($_POST["text"])."','".time()."','".$session->userdata["uid"]."','".intval($_POST["category"])."','".$title."','".$_POST["active"]."')");
|
||||
$panel->admin_message("Danke", "Die News wurden erfolgreich eingetragen!.",TRUE,"add_news");
|
||||
}else{
|
||||
$fail="<span style=\"text-align: center; color: red;\">Du musst alle Felder ausfüllen!</span>";
|
||||
}
|
||||
}elseif(!isset($_POST['send']) || $fail){
|
||||
$panel->title="News schreiben";
|
||||
$panel->form(array("action"=>$config["path"]."/admin/index.php?panel=add_news"));
|
||||
if($fail){
|
||||
$panel->content.=$fail;
|
||||
}
|
||||
$panel->content.="<h3>Titel:</h3>";
|
||||
$panel->field(array("name"=>"title","typ"=>"text","value"=>$_POST["title"]));
|
||||
$resultc=$db->query("SELECT `id`,`name` FROM `" . $config["prefix"] . "news_category` WHERE `active`='true'");
|
||||
$karray["Keine"]="";
|
||||
while($row=$db->fetch_array($resultc)){
|
||||
$karray[$row["name"]]=$row["id"];
|
||||
}
|
||||
$panel->content.="<h3>Kategorie:</h3>";
|
||||
$panel->select($karray,$_POST["category"],"category");
|
||||
$panel->content.="<br />";
|
||||
$panel->content.="<h3>Text:</h3>";
|
||||
$panel->textarea(array("name"=>"text","value"=>$_POST["text"],"rows"=>"30","cols"=>"80"),"class=\"mceEditor\"");
|
||||
$panel->content.="<h3>Aktiv:</h3>";
|
||||
$panel->select(array("Nein"=>"false","Ja"=>"true"),$_POST["active"],"active");
|
||||
$panel->content.="<br />";
|
||||
$panel->field(array("name"=>"send","typ"=>"hidden","value"=>"1"));
|
||||
$panel->content.="<br />";
|
||||
$panel->submit();
|
||||
$panel->formClose();
|
||||
}
|
||||
}
|
||||
|
||||
function meta(){
|
||||
global $config;
|
||||
$meta="<script type=\"text/javascript\" src=\"".$config["path"]."/js/jquery/jquery.min.js\"></script>
|
||||
<script type=\"text/javascript\">
|
||||
$(document).ready(function()
|
||||
{
|
||||
$(\"#url\").blur(function()
|
||||
{
|
||||
//remove all the class add the messagebox classes and start fading
|
||||
$(\"#msgbox\").removeClass().addClass('messagebox').text('Warten...').fadeIn(\"slow\");
|
||||
//check the username exists or not from ajax
|
||||
$.post(\"ajax.php\",{ call:'url',url:$(this).val() } ,function(data)
|
||||
{
|
||||
if(data==1) //if username not avaiable
|
||||
{
|
||||
$(\"#msgbox\").fadeTo(200,0.1,function() //start fading the messagebox
|
||||
{
|
||||
//add message and change the class of the box and start fading
|
||||
$(this).html('Url vergeben').addClass('messageboxerror').fadeTo(900,1);
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
$(\"#msgbox\").fadeTo(200,0.1,function() //start fading the messagebox
|
||||
{
|
||||
//add message and change the class of the box and start fading
|
||||
$(this).html('').removeClass().fadeTo(900,1);
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
</script>";
|
||||
$meta.='<script type="text/javascript" src="'.$config["path"].'/thirdparty/tiny/tiny_mce_gzip.js"></script>
|
||||
<script type="text/javascript">
|
||||
tinyMCE_GZ.init({
|
||||
theme : "advanced",
|
||||
mode : "textareas",
|
||||
language : "de",
|
||||
plugins : "table,advhr,advimage,advlink,insertdatetime,searchreplace",
|
||||
disk_cache : true,
|
||||
debug : false
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript" src="'.$config["path"].'/thirdparty/tiny/tiny_mce.js"></script>
|
||||
<script type="text/javascript">
|
||||
tinyMCE.init({
|
||||
theme : "advanced",
|
||||
mode : "textareas",
|
||||
language : "de",
|
||||
plugins : "table,advhr,advimage,advlink,insertdatetime,searchreplace",
|
||||
theme_advanced_disable : "styleselect,formatselect ",
|
||||
theme_advanced_buttons1_add : "fontselect,fontsizeselect",
|
||||
theme_advanced_buttons2_add : "seperator,forecolor,removeformat,advhr",
|
||||
theme_advanced_buttons3 : "tablecontrols,seperator",
|
||||
theme_advanced_toolbar_location : "top",
|
||||
theme_advanced_toolbar_align : "center",
|
||||
remove_linebreaks : false,
|
||||
convert_urls : false,
|
||||
editor_selector : "mceEditor",
|
||||
editor_deselector : "mceNoEditor"
|
||||
});
|
||||
</script>';
|
||||
return $meta;
|
||||
}
|
||||
}
|
||||
?>
|
81
modules/news/admin/addcategory.apnl.php
Normal file
81
modules/news/admin/addcategory.apnl.php
Normal file
|
@ -0,0 +1,81 @@
|
|||
<?php
|
||||
/**
|
||||
* Project: astat - simple site engine
|
||||
* File: /modules/news/addcategory.apnl.php
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* @link http://www.astat.org SVN: $URL: file:///var/local/svn/astat/trunk/modules/news/admin/addcategory.apnl.php $
|
||||
* @copyright 2009 becast.at
|
||||
* @author Bernhard Jaud <bernhard at becast dot at>
|
||||
* @package astat core
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
* @version $Id: addcategory.apnl.php 96 2010-02-17 21:56:41Z genuineparts $
|
||||
*/
|
||||
|
||||
If (!defined("in_BL_ADMIN")) {
|
||||
die("Dieses Script kann nicht ausserhalb des Frameworks laufen!");
|
||||
}
|
||||
$session->page_begin("add news Category", True);
|
||||
|
||||
class addcategory_news_panel extends admin_module{
|
||||
|
||||
function output(){
|
||||
global $config, $db,$panel, $root, $session, $core;
|
||||
$fail=FALSE;
|
||||
if(isset($_POST['send'])&& $_POST['send']==1){
|
||||
if(isset($_POST['name'])&& $_POST['name']!=""){
|
||||
$userfile_name = $_FILES['picture']['name'];
|
||||
$userfile_tmp = $_FILES['picture']['tmp_name'];
|
||||
$userfile_size = $_FILES['picture']['size'];
|
||||
$userfile_type = $_FILES['picture']['type'];
|
||||
$filedir = $root.'/newsimages/';
|
||||
$size = 700;
|
||||
if (isset($_FILES['picture']['name']) && $_FILES['picture']['name']!=""){
|
||||
$prod_img = $filedir.$userfile_name;
|
||||
$ret=$core->upload_file($prod_img, $userfile_tmp, $size, $size, TRUE, TRUE);
|
||||
if($ret!==TRUE){
|
||||
$panel->admin_message("Fehler", "Das Bild konnte nicht hochgeladen wrden <br /> Der Fehler war: ". $ret,TRUE,"addcategory_news");
|
||||
}
|
||||
}
|
||||
$name=$db->escape($_POST['name']);
|
||||
$active=$db->escape($_POST['active']);
|
||||
$db->query("INSERT INTO `" . $config["prefix"]. "news_category` (`name`,`picture`,`active`) VALUES ('".$name."','".$userfile_name."','".$active."')");
|
||||
$panel->admin_message("Danke", "Die Kategorie wurde erfolgreich eingetragen!.",TRUE,"addcategory_news");
|
||||
}else{
|
||||
$fail="<span style=\"text-align: center; color: red;\">Der Kategoriename muss angegeben werden!</span>";
|
||||
}
|
||||
}elseif(!isset($_POST['send']) || $fail){
|
||||
$panel->title="Kategorie hinzufügen";
|
||||
$panel->form(array("action"=>$config["path"]."/admin/index.php?panel=addcategory_news"),FALSE,"enctype=\"multipart/form-data\"");
|
||||
if($fail){
|
||||
$panel->content.=$fail;
|
||||
}
|
||||
$panel->content.="<h3>Kategoriename:</h3>";
|
||||
$panel->field(array("name"=>"name","typ"=>"text","value"=>$_POST["name"]));
|
||||
$panel->content.="<h3>Kategoriebild:</h3>";
|
||||
$panel->field(array("name"=>"picture","typ"=>"file","value"=>$_POST["picture"]));
|
||||
$panel->content.="<br />";
|
||||
$panel->content.="<h3>Aktiv:</h3>";
|
||||
$panel->select(array("Nein"=>"false","Ja"=>"true"),$_POST["active"],"active");
|
||||
$panel->content.="<br />";
|
||||
$panel->field(array("name"=>"send","typ"=>"hidden","value"=>"1"));
|
||||
$panel->content.="<br />";
|
||||
$panel->submit();
|
||||
$panel->formClose();
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
227
modules/news/admin/edit.apnl.php
Normal file
227
modules/news/admin/edit.apnl.php
Normal file
|
@ -0,0 +1,227 @@
|
|||
<?php
|
||||
/**
|
||||
* Project: BeCast WebEngine - simple site engine
|
||||
* File: /modules/news/edit.apnl.php
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* @link http://www.becast.at
|
||||
* @copyright 2009 becast.at
|
||||
* @author Bernhard Jaud <bernhard at becast dot at>
|
||||
* @package BeCast WebEngine core
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
* @version $Id: edit.apnl.php 96 2010-02-17 21:56:41Z genuineparts $
|
||||
*/
|
||||
If (!defined('in_BL_ADMIN')) {
|
||||
die('Dieses Script kann nicht ausserhalb des Frameworks laufen!');
|
||||
}
|
||||
$session->page_begin('edit News', True);
|
||||
|
||||
class edit_news_panel extends admin_module{
|
||||
|
||||
function output(){
|
||||
global $config, $db,$panel, $session, $admin;
|
||||
$fail=FALSE;
|
||||
if(isset($_POST['send'])&& $_POST['send']==1){
|
||||
if(isset($_POST['id'])&& $_POST['id']!=''||isset($_POST['text'])&& $_POST['text']!=''||isset($_POST['title'])&& $_POST['title']!=''){
|
||||
$id=intval($_POST['id']);
|
||||
$title=$db->escape($_POST['title']);
|
||||
$db->query("UPDATE `" . $config['prefix'] . "news` SET `text`='".$db->escape($_POST['text'])."',`category`='".intval($_POST['category'])."',`title`='".$title."',`active`='".$_POST['active']."' WHERE `id`='".$id."'");
|
||||
$panel->admin_message('Danke', 'News erfolgreich geändert!',TRUE,'edit_news');
|
||||
}else{
|
||||
$fail='<span style="text-align: center; color: red;">Du musst alle Felder ausfüllen!</span>';
|
||||
}
|
||||
|
||||
}elseif(isset($_GET['id'])&& $_GET['id']!=''){
|
||||
if($_GET['action']=='edit'){
|
||||
$result = $db->query("SELECT * FROM " . $config['prefix'] . "news WHERE id='".intval($_GET['id'])."'");
|
||||
$_POST=$db->fetch_array($result);
|
||||
|
||||
/*$resultna=$db->query("SELECT id,name FROM " . $config["prefix"] . "menue");
|
||||
while($rowa=$db->fetch_array($resultna)){
|
||||
$resultn = $db->query("SELECT m_id FROM " . $config["prefix"] . "article_menue WHERE a_id='".intval($_GET['id'])."' and m_id='".$rowa["id"]."'");
|
||||
if($db->num_rows($resultn) >= 1){
|
||||
$rowa["checked"]="checked=\"checked\"";
|
||||
}
|
||||
$navs[]=$rowa;
|
||||
}*/
|
||||
|
||||
|
||||
$panel->title='News editieren';
|
||||
$panel->form(array('action'=>$config['path'].'/admin/index.php?panel=edit_news'));
|
||||
if($fail){
|
||||
$panel->content.=$fail;
|
||||
}
|
||||
$panel->content.='<h3>Titel:</h3>';
|
||||
$panel->field(array('name'=>'title','typ'=>'text','value'=>$_POST['title']));
|
||||
$panel->content.='<h3>Kategorie:</h3>';
|
||||
$resultc=$db->query("SELECT `id`,`name` FROM `" . $config['prefix'] . "news_category` WHERE `active`='true'");
|
||||
$karray['Keine']='';
|
||||
while($row=$db->fetch_array($resultc)){
|
||||
$karray[$row['name']]=$row['id'];
|
||||
}
|
||||
$panel->select($karray,$_POST['category'],'category');
|
||||
$panel->content.='<h3>Text:</h3>';
|
||||
$panel->textarea(array('name'=>'text','value'=>$_POST['text'],'rows'=>'30','cols'=>'80'),'class="mceEditor"');
|
||||
$panel->content.='<h3>Aktiv:</h3>';
|
||||
$panel->select(array('Nein'=>'false','Ja'=>'true'),$_POST['active'],'active');
|
||||
$panel->content.='<br />';
|
||||
$panel->field(array('name'=>'send','typ'=>'hidden','value'=>'1'));
|
||||
$panel->field(array('name'=>'id','typ'=>'hidden','value'=>$_GET['id']));
|
||||
$panel->content.='<br />';
|
||||
$panel->submit();
|
||||
$panel->formClose();
|
||||
}elseif($_GET['action']=='delete' && $_GET['id']){
|
||||
$db->query("DELETE FROM `" . $config['prefix'] . "news` WHERE `id`='".intval($_GET['id'])."'");
|
||||
$panel->admin_message('News gelöscht!','Die News wurden erfolgreich gelöscht.',True,'edit_news',3);
|
||||
}
|
||||
|
||||
}else{
|
||||
$result = $db->query("SELECT a.`title`,a.`id`,a.`active`,a.`date`,c.`name`,u.`username` FROM `" . $config['prefix'] . "news` a LEFT JOIN `" . $config['prefix'] . "news_category` c ON a.`category`=c.`id` LEFT JOIN `" . $config['prefix'] . "users` u on a.`author`=u.`uid`") or die($db->error());
|
||||
while($row=$db->fetch_array($result, $db->ASSOC)){
|
||||
$row['dates']=date('d.m.Y',$row['date']);
|
||||
$news[]=$row;
|
||||
}
|
||||
$panel->title='Vorhandene Artikel';
|
||||
$panel->content.='<table class="sortable" width="90%" cellspacing="2">
|
||||
<tr>
|
||||
<th align="center">ID</th>
|
||||
<th align="center">Name</th>
|
||||
<th align="center">Kategorien</th>
|
||||
<th align="center">Aktiv</th>
|
||||
<th align="center">User</th>
|
||||
<th class="nosort sortcol" align="center" width="18%">Aktionen</th>
|
||||
</tr>';
|
||||
if(!empty($news)){
|
||||
foreach($news as $u){
|
||||
if($u['active']=='true'){
|
||||
$u['a']='Ja';
|
||||
}else{
|
||||
$u['a']='Nein';
|
||||
}
|
||||
$panel->content.='<tr>
|
||||
<td align="center">'.$u['id'].'</td>
|
||||
<td align="center">'.$u['title'].'</td>
|
||||
<td align="center">'.$u['name'].'</td>
|
||||
<td align="center">'.$u['a'].'</td>
|
||||
<td align="center">'.$u['username'].'</td>';
|
||||
$panel->content.='<td align="center"><a onclick="return confirmLink(this, "Willst du wirklich den News '.$u['title'].' löschen? ")" href="'.$config['path'].'/admin/index.php?panel=edit_news&action=delete&id='.$u['id'].'"><img src="'.$config['path'].'/admin/images/icons/delete.png" /></a> <a href="'.$config['path'].'/admin/index.php?panel=edit_news&action=edit&id='.$u['id'].'"><img src="'.$config['path'].'/admin/images/icons/wrench.png" /></a></td>
|
||||
</tr>';
|
||||
}
|
||||
}else{
|
||||
$panel->content.='<tr>
|
||||
<td align="center" colspan="7">Keine News vorhanden.</td>
|
||||
</tr>';
|
||||
}
|
||||
$panel->content.='</table><br />';
|
||||
}
|
||||
}
|
||||
|
||||
function meta(){
|
||||
global $config;
|
||||
$meta="<script type=\"text/javascript\" src=\"".$config["path"]."/js/jquery/jquery.min.js\"></script>
|
||||
<script type=\"text/javascript\">
|
||||
$(document).ready(function()
|
||||
{
|
||||
$(\"#url\").blur(function()
|
||||
{
|
||||
//remove all the class add the messagebox classes and start fading
|
||||
$(\"#msgbox\").removeClass().addClass('messagebox').text('Warten...').fadeIn(\"slow\");
|
||||
//check the username exists or not from ajax
|
||||
$.post(\"ajax.php\",{ call:'url',url:$(this).val() } ,function(data)
|
||||
{
|
||||
if(data==1) //if username not avaiable
|
||||
{
|
||||
$(\"#msgbox\").fadeTo(200,0.1,function() //start fading the messagebox
|
||||
{
|
||||
//add message and change the class of the box and start fading
|
||||
$(this).html('Url vergeben').addClass('messageboxerror').fadeTo(900,1);
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
$(\"#msgbox\").fadeTo(200,0.1,function() //start fading the messagebox
|
||||
{
|
||||
//add message and change the class of the box and start fading
|
||||
$(this).html('').removeClass().fadeTo(900,1);
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
</script>";
|
||||
$meta.='<script type="text/javascript" src="'.$config["path"].'/js/scriptaculous/prototype.js"></script>
|
||||
<script src="'.$config["path"].'/js/fastinit.js" type="text/javascript">
|
||||
</script>
|
||||
<script src="'.$config["path"].'/js/tablesort.js" type="text/javascript">
|
||||
</script>';
|
||||
$meta.='<script type="text/javascript">
|
||||
function confirmLink(theLink, text)
|
||||
{
|
||||
// Confirmation is not required in the configuration file
|
||||
// or browser is Opera (crappy js implementation)
|
||||
if (typeof(window.opera) != \'undefined\') {
|
||||
return true;
|
||||
}
|
||||
|
||||
var is_confirmed = confirm(text);
|
||||
if (is_confirmed) {
|
||||
if ( typeof(theLink.href) != \'undefined\' ) {
|
||||
theLink.href += \'&is_js_confirmed=1\';
|
||||
} else if ( typeof(theLink.form) != \'undefined\' ) {
|
||||
theLink.form.action += \'?is_js_confirmed=1\';
|
||||
}
|
||||
}
|
||||
|
||||
return is_confirmed;
|
||||
}
|
||||
</script>';
|
||||
$meta.='<script type="text/javascript" src="/thirdparty/tiny/tiny_mce_gzip.js"></script>
|
||||
<script type="text/javascript">
|
||||
tinyMCE_GZ.init({
|
||||
theme : "advanced",
|
||||
mode : "textareas",
|
||||
language : "de",
|
||||
plugins : "table,advhr,advimage,advlink,insertdatetime,searchreplace",
|
||||
disk_cache : true,
|
||||
debug : false
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript" src="/thirdparty/tiny/tiny_mce.js"></script>
|
||||
<script type="text/javascript">
|
||||
tinyMCE.init({
|
||||
theme : "advanced",
|
||||
mode : "textareas",
|
||||
language : "de",
|
||||
plugins : "table,advhr,advimage,advlink,insertdatetime,searchreplace",
|
||||
theme_advanced_disable : "styleselect,formatselect ",
|
||||
theme_advanced_buttons1_add : "fontselect,fontsizeselect",
|
||||
theme_advanced_buttons2_add : "seperator,forecolor,removeformat,advhr",
|
||||
theme_advanced_buttons3 : "tablecontrols,seperator",
|
||||
theme_advanced_toolbar_location : "top",
|
||||
theme_advanced_toolbar_align : "center",
|
||||
remove_linebreaks : false,
|
||||
convert_urls : false,
|
||||
editor_selector : "mceEditor",
|
||||
editor_deselector : "mceNoEditor"
|
||||
});
|
||||
</script>';
|
||||
return $meta;
|
||||
}
|
||||
}
|
||||
?>
|
190
modules/news/admin/editcategory.apnl.php
Normal file
190
modules/news/admin/editcategory.apnl.php
Normal file
|
@ -0,0 +1,190 @@
|
|||
<?php
|
||||
/**
|
||||
* Project: BeCast WebEngine - simple site engine
|
||||
* File: /modules/news/editcategory.apnl.php
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* @link http://www.becast.at
|
||||
* @copyright 2009 becast.at
|
||||
* @author Bernhard Jaud <bernhard at becast dot at>
|
||||
* @package BeCast WebEngine core
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
* @version $Id: editcategory.apnl.php 96 2010-02-17 21:56:41Z genuineparts $
|
||||
*/
|
||||
|
||||
If (!defined("in_BL_ADMIN")) {
|
||||
die("Dieses Script kann nicht ausserhalb des Frameworks laufen!");
|
||||
}
|
||||
$session->page_begin("edit news category", True);
|
||||
|
||||
class editcategory_news_panel extends admin_module{
|
||||
|
||||
function output(){
|
||||
global $config, $db,$panel, $session, $root, $core, $admin;
|
||||
$fail=FALSE;
|
||||
|
||||
if(isset($_POST['send'])&& $_POST['send']==1){
|
||||
if(isset($_POST['name'])&& $_POST['name']!=""){
|
||||
$userfile_name = $_FILES['picture']['name'];
|
||||
$userfile_tmp = $_FILES['picture']['tmp_name'];
|
||||
$userfile_size = $_FILES['picture']['size'];
|
||||
$userfile_type = $_FILES['picture']['type'];
|
||||
$filedir = $root.'/newsimages/';
|
||||
$size = 700;
|
||||
if (isset($_FILES['picture']['name']) && $_FILES['picture']['name']!=""){
|
||||
$prod_img = $filedir.$userfile_name;
|
||||
$ret=$core->upload_file($prod_img, $userfile_tmp, $size, $size, TRUE, TRUE);
|
||||
if($ret!==TRUE){
|
||||
$panel->admin_message("Fehler", "Das Bild konnte nicht hochgeladen wrden <br /> Der Fehler war: ". $ret,TRUE,"editcategory_news");
|
||||
}
|
||||
$result=$db->query("SELECT `picture` FROM `" . $config["prefix"]. "news_category` WHERE `id`='".intval($_POST["id"])."' LIMIT 1");
|
||||
$file=$db->fetch_array($result);
|
||||
@unlink($filedir.$file['picture']);
|
||||
$db->query("UPDATE `" . $config["prefix"]. "news_category` SET `picture`='".$userfile_name."' WHERE `id`='".intval($_POST["id"])."'");
|
||||
}elseif($_POST["delimg"]==1){
|
||||
$result=$db->query("SELECT `picture` FROM `" . $config["prefix"]. "news_category` WHERE `id`='".intval($_POST["id"])."' LIMIT 1");
|
||||
$file=$db->fetch_array($result);
|
||||
@unlink($filedir.$file['picture']);
|
||||
$db->query("UPDATE `" . $config["prefix"]. "news_category` SET `picture`='' WHERE `id`='".intval($_POST["id"])."'");
|
||||
}
|
||||
|
||||
$name=$db->escape($_POST['name']);
|
||||
$active=$db->escape($_POST['active']);
|
||||
$db->query("UPDATE `" . $config["prefix"]. "news_category` SET `name`='".$name."', `active`='".$active."' WHERE `id`='".intval($_POST["id"])."'") or die($db->error());
|
||||
$panel->admin_message("Danke", "Die Kategorie wurde erfolgreich editiert!.",TRUE,"editcategory_news");
|
||||
}else{
|
||||
$fail="<span style=\"text-align: center; color: red;\">Der Kategoriename muss angegeben werden!</span>";
|
||||
}
|
||||
|
||||
}elseif(isset($_GET['id'])&& $_GET['id']!=""){
|
||||
if($_GET['action']=="edit"){
|
||||
$result = $db->query("SELECT * FROM `" . $config["prefix"] . "news_category` WHERE `id`='".intval($_GET['id'])."'");
|
||||
$_POST=$db->fetch_array($result);
|
||||
/*$resultna=$db->query("SELECT id,name FROM " . $config["prefix"] . "menue");
|
||||
while($rowa=$db->fetch_array($resultna)){
|
||||
$resultn = $db->query("SELECT m_id FROM " . $config["prefix"] . "article_menue WHERE a_id='".intval($_GET['id'])."' and m_id='".$rowa["id"]."'");
|
||||
if($db->num_rows($resultn) >= 1){
|
||||
$rowa["checked"]="checked=\"checked\"";
|
||||
}
|
||||
$navs[]=$rowa;
|
||||
}*/
|
||||
|
||||
|
||||
$panel->title="Kategorie editieren";
|
||||
$panel->form(array("action"=>$config["path"]."/admin/index.php?panel=editcategory_news"),FALSE,"enctype=\"multipart/form-data\"");
|
||||
if($fail){
|
||||
$panel->content.=$fail;
|
||||
}
|
||||
$panel->content.="<h3>Kategoriename:</h3>";
|
||||
$panel->field(array("name"=>"name","typ"=>"text","value"=>$_POST["name"]));
|
||||
if($_POST["picture"]!=""){
|
||||
$panel->content.="<h3>aktuelles Kategoriebild:</h3>";
|
||||
$panel->content.="<img src=\"".$config["path"]."/newsimages/".$_POST["picture"]."\" alt=\"Kategoriebild\" />";
|
||||
$panel->content.="<br />";
|
||||
$panel->checkbox(array("name"=>"delimg","value"=>"1"));
|
||||
$panel->content.=" Bild löschen?";
|
||||
$panel->content.="<br />";
|
||||
}
|
||||
$panel->content.="<h3>neues Kategoriebild:</h3>";
|
||||
$panel->field(array("name"=>"picture","typ"=>"file"));
|
||||
$panel->content.="<br />";
|
||||
$panel->content.="<h3>Aktiv:</h3>";
|
||||
$panel->select(array("Nein"=>"false","Ja"=>"true"),$_POST["active"],"active");
|
||||
$panel->content.="<br />";
|
||||
$panel->field(array("name"=>"send","typ"=>"hidden","value"=>"1"));
|
||||
$panel->field(array("name"=>"id","typ"=>"hidden","value"=>$_GET['id']));
|
||||
$panel->content.="<br />";
|
||||
$panel->submit();
|
||||
$panel->formClose();
|
||||
$panel->parse_page();
|
||||
|
||||
}elseif($_GET["action"]=="delete" && $_GET["id"]){
|
||||
$result=$db->query("SELECT `picture` FROM `" . $config["prefix"] . "news_category` where `id`='".intval($_GET["id"])."'");
|
||||
$row = $db->fetch_array($result);
|
||||
@unlink($root.'/catimages/'.$row["picture"]);
|
||||
$db->query("DELETE FROM `" . $config["prefix"] . "news_category` WHERE `id`='".intval($_GET["id"])."'");
|
||||
$panel->admin_message("Kategorie gelöscht!","Die Kategorie wurde erfolgreich gelöscht.",True,"editcategory_news",3);
|
||||
}
|
||||
|
||||
}else{
|
||||
$result = $db->query("SELECT * FROM `" . $config["prefix"] . "news_category`");
|
||||
while($row=$db->fetch_array($result, $db->ASSOC)){
|
||||
$articles[]=$row;
|
||||
}
|
||||
$panel->title="Vorhandene Kategorien";
|
||||
$panel->content.="<table class=\"sortable\" width=\"90%\" cellspacing=\"2\">
|
||||
<tr>
|
||||
<th align=\"center\">ID</th>
|
||||
<th align=\"center\">Name</th>
|
||||
<th align=\"center\">Bild</th>
|
||||
<th align=\"center\">Aktiv</th>
|
||||
<th class=\"nosort sortcol\" align=\"center\" width=\"18%\">Aktionen</th>
|
||||
</tr>";
|
||||
if(!empty($articles)){
|
||||
foreach($articles as $u){
|
||||
$panel->content.="<tr>
|
||||
<td align=\"center\">".$u["id"]."</td>
|
||||
<td align=\"center\">".$u["name"]."</td>
|
||||
<td align=\"center\">".$u["picture"]."</td>";
|
||||
if($u["active"]=="true"){
|
||||
$panel->content.="<td align=\"center\">Ja</td>";
|
||||
}else{
|
||||
$panel->content.="<td align=\"center\">Nein</td>";
|
||||
}
|
||||
$panel->content.="<td align=\"center\"><a onclick=\"return confirmLink(this, 'Willst du wirklich die Kategorie ".$u["categoryname"]." löschen? ')\" href=\"".$config["path"]."/admin/index.php?panel=editcategory_news&action=delete&id=".$u["id"]."\"><img src=\"".$config["path"]."/admin/images/icons/delete.png\" /></a> <a href=\"".$config["path"]."/admin/index.php?panel=editcategory_news&action=edit&id=".$u["id"]."\"><img src=\"".$config["path"]."/admin/images/icons/wrench.png\" /></a></td>
|
||||
</tr>";
|
||||
}
|
||||
}else{
|
||||
$panel->content.="<tr>
|
||||
<td align=\"center\" colspan=\"5\">Keine Kategorien vorhanden.</td>
|
||||
</tr>";
|
||||
}
|
||||
$panel->content.="</table><br />";
|
||||
}
|
||||
}
|
||||
|
||||
function meta(){
|
||||
$meta.='<script type="text/javascript" src="'.$config["path"].'/js/scriptaculous/prototype.js"></script>
|
||||
<script src="'.$config["path"].'/js/fastinit.js" type="text/javascript">
|
||||
</script>
|
||||
<script src="'.$config["path"].'/js/tablesort.js" type="text/javascript">
|
||||
</script>';
|
||||
|
||||
$meta.='<script type="text/javascript">
|
||||
function confirmLink(theLink, text)
|
||||
{
|
||||
// Confirmation is not required in the configuration file
|
||||
// or browser is Opera (crappy js implementation)
|
||||
if (typeof(window.opera) != \'undefined\') {
|
||||
return true;
|
||||
}
|
||||
|
||||
var is_confirmed = confirm(text);
|
||||
if (is_confirmed) {
|
||||
if ( typeof(theLink.href) != \'undefined\' ) {
|
||||
theLink.href += \'&is_js_confirmed=1\';
|
||||
} else if ( typeof(theLink.form) != \'undefined\' ) {
|
||||
theLink.form.action += \'?is_js_confirmed=1\';
|
||||
}
|
||||
}
|
||||
|
||||
return is_confirmed;
|
||||
}
|
||||
</script>';
|
||||
return $meta;
|
||||
}
|
||||
}
|
||||
?>
|
69
modules/news/news.module.php
Normal file
69
modules/news/news.module.php
Normal file
|
@ -0,0 +1,69 @@
|
|||
<?php
|
||||
|
||||
class module_news extends admin_module{
|
||||
|
||||
function admin_panels(){
|
||||
$panels=array(array("add_news","News schreiben","newspaper_add"),array("edit_news","News editieren","newspaper_go"),array("group_only","Newskategorien"),array("addcategory_news","Newskategorie hinzufügen","tag_blue_add"),array("editcategory_news","Newskategorie editieren","tag_blue_edit"));
|
||||
return $panels;
|
||||
}
|
||||
|
||||
function get_info(){
|
||||
$info["name"]="Newsmodul";
|
||||
$info["file"]="news";
|
||||
$info["author"]="astat";
|
||||
$info["version"]="1.0.0";
|
||||
$info["url"]="http://www.astat.org";
|
||||
return $info;
|
||||
}
|
||||
|
||||
function install(){
|
||||
global $config, $db;
|
||||
$db->query("CREATE TABLE `" . $config['prefix'] . "news` (
|
||||
`id` int(11) NOT NULL auto_increment,
|
||||
`title` varchar(60) NOT NULL default '',
|
||||
`text` text NOT NULL,
|
||||
`author` int(11) NOT NULL default '0',
|
||||
`date` int(11) NOT NULL default '0',
|
||||
`category` mediumint(9) NOT NULL default '0',
|
||||
`active` enum('false','true') NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM");
|
||||
|
||||
$db->query("CREATE TABLE `" . $config['prefix'] . "news_category` (
|
||||
`id` int(11) NOT NULL auto_increment,
|
||||
`name` varchar(60) NOT NULL default '',
|
||||
`picture` varchar(60) NOT NULL,
|
||||
`active` enum('false','true') NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM");
|
||||
|
||||
|
||||
mkdir ($_SERVER["DOCUMENT_ROOT"] . $config['path']."/newsimages", 0777);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
function uninstall(){
|
||||
global $config, $db;
|
||||
$db->query("DELETE FROM `" . $config["prefix"] . "navigation` WHERE file='frontpage_news'");
|
||||
$db->query("DROP TABLE `" . $config["prefix"] . "news`");
|
||||
$db->query("DROP TABLE `" . $config["prefix"] . "news_category`");
|
||||
@$this->recursive($_SERVER["DOCUMENT_ROOT"]. $config['path']."/newsimages");
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
function recursive($dest){
|
||||
$list = array_diff(scandir($dest), array('.', '..'));
|
||||
foreach ($list as $value) {
|
||||
$file = $dest.'/'.$value;
|
||||
if (is_dir($file)) {
|
||||
recursive($file);
|
||||
}else{
|
||||
unlink($file);
|
||||
}
|
||||
}
|
||||
return rmdir($dest);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
?>
|
49
modules/news/news.plugins.php
Normal file
49
modules/news/news.plugins.php
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
If (!defined("in_astat")) {
|
||||
die("Dieses Script kann nicht ausserhalb des Frameworks laufen!");
|
||||
}
|
||||
class plugins_mybbnews{
|
||||
|
||||
function register_plugins(& $plugin){
|
||||
$plugin->use_hook('frontpage_news',array($this,"newsview"));
|
||||
$plugin->use_hook('navigation_mainmodule',array($this,"frontpage_nav"));
|
||||
}
|
||||
|
||||
function newsview(){
|
||||
global $db, $config;
|
||||
$this->tpl= new Smarty();
|
||||
$parser=new textparser(true);
|
||||
$root = $_SERVER['DOCUMENT_ROOT'] . $config["path"];
|
||||
$this->tpl->compile_dir = $root . '/core/template/templates_c';
|
||||
$this->tpl->cache_dir = $root . '/core/template/cache';
|
||||
$this->tpl->config_dir = $root . '/core/template/config';
|
||||
$this->tpl->caching = $config["caching"];
|
||||
$this->tpl->assign("path",$config["path"]."/");
|
||||
if(isset($config["theme"]) && is_dir($root . '/modules/news/templates/'.$config["theme"])){
|
||||
$this->tpl-> template_dir = $root . '/modules/news/templates/'.$config["theme"];
|
||||
}else{
|
||||
$this->tpl-> template_dir = $root . '/modules/news/templates/default';
|
||||
}
|
||||
$result=$db->query("SELECT u.`username`, n.`title`, n.`date`, n.`text`, c.`name`,c.`picture` FROM `" . $config["prefix"] . "news` n LEFT JOIN `" . $config["prefix"] . "news_category` c ON n.`category`=c.`id` LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=n.`author` WHERE n.`active`='true' ORDER BY n.`date` DESC LIMIT 10");
|
||||
while($row=$db->fetch_array($result)){
|
||||
$row["year"]=date("Y",$row["dateline"]);
|
||||
$row["month"]=date("M",$row["dateline"]);
|
||||
$row["day"]=date("d",$row["dateline"]);
|
||||
$row["time"]=date("h:i",$row["dateline"]);
|
||||
$row["date"]=date("d.m.Y",$row["dateline"]);
|
||||
$row["text"]=$parser->parse($row["message"]);
|
||||
$news[]=$row;
|
||||
}
|
||||
$this->tpl->assign('news', $news);
|
||||
return $this->tpl->fetch('news.tpl',"news");
|
||||
}
|
||||
|
||||
function frontpage_nav($mainmodule){
|
||||
global $db, $config,$mainmodule;
|
||||
$mainmodule.="<div id=\"frontpage_mybbnews\" class=\"lineitem\">News</div>";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
?>
|
25
modules/news/templates/coppertopia/news.tpl
Normal file
25
modules/news/templates/coppertopia/news.tpl
Normal file
|
@ -0,0 +1,25 @@
|
|||
<div id="posts-list" class="cf">
|
||||
<h2>News</h2>
|
||||
{foreach from=$news item=n}
|
||||
<article>
|
||||
<div class="feature-image">
|
||||
{if $n.picture!=""}<img src="/newsimages/{$n.picture}" alt="{$n.name}"/>{/if}
|
||||
<div class="entry-date">
|
||||
<div class="month">{$n.month}</div>
|
||||
<div class="number">{$n.day}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="excerpt">
|
||||
<a class="post-heading">{$n.title}</a>
|
||||
<p> {$n.text} </p>
|
||||
</div>
|
||||
<div class="meta">
|
||||
<span class="user">
|
||||
by {$n.username} on {$n.date}
|
||||
</span>
|
||||
</div>
|
||||
<i class="tape"></i>
|
||||
</article>
|
||||
{foreachelse}
|
||||
{/foreach}
|
||||
</div>
|
9
modules/news/templates/default/news.tpl
Normal file
9
modules/news/templates/default/news.tpl
Normal file
|
@ -0,0 +1,9 @@
|
|||
<h2>News</h2>
|
||||
{foreach from=$news item=n}
|
||||
<h3>{$n.title}</h3>
|
||||
<p class="post-by">Written by {$n.username} on {$n.date}</p>
|
||||
{if $n.picture!=""}<div class="newsimage"><img class="newsimage" src="/newsimages/{$n.picture}" alt="{$n.name}"/></div>{/if}
|
||||
{$n.text}
|
||||
{if $edituser!=""}<br /><font size="1pt">(zuletzt editiert am {$editdate}, von {$edituser})</font><br />{/if}
|
||||
{foreachelse}
|
||||
{/foreach}
|
Loading…
Add table
Add a link
Reference in a new issue