MyBB.de Forum
mypat Plugin - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html)
+--- Thema: mypat Plugin (/thread-10068.html)

Seiten: Seiten: 1 2


RE: mypat Plugin - wWs - 29.07.2008

Ich bedanke mich


RE: mypat Plugin - linwinman - 29.07.2008

Du schreibst > hier
Zitat:Kein Problem
Erledigt Button nicht vergessen :Wink:
... und selbst? Wink


RE: mypat Plugin - wWs - 29.07.2008

Musste nur schnell mit meinem laptop ins andere Zimmer deswegen auch off.

Aber ich mach die schon alleine zur Kontrolle für mich, um zu sehen wo ich noch Probleme habe Wink

P.s Foren sind cool wie Bücher in dennen man alles nachschlagen kann Wink


RE: mypat Plugin - wWs - 31.07.2008

Folgendes Problem ich habe das Plugin geändert...
und zwar my post/theads habe ich einfach in meine Beiträge, meine Themen geändert...
warum zeigt er mir das nicht richtig an?

PHP-Code:
<?php
/**
* Plugin Name: My Posts and Threads
* Plugin Version: 0.1
* Mybb Compatibility: 1.2x
* Author: MyBB Romania
* Copyright: © 2008 MyBB Romania
* Website:  http://mybbromania.com
* Description:  Display links in welcome block member for quick access to view own posts and threads
**/

// Disallow direct access to this file for security reasons
if(!defined("IN_MYBB"))
{
    die(
"Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}

// Plugin info
function mypat_info()
{
    return array(
        
"name"            => "My Posts and Threads",
        
"description"    => "Display links in welcome block member for quick access to view own posts and threads",
        
"website"        => "http://mybbromania.com",
        
"author"        => "MyBB Romania",
        
"authorsite"    => "http://mybbromania.com",
        
"version"        => "0.1",
        
"guid"            => "442763087b42f75498d368c43c7d174b"
    
);

}

// Activate plugin
function mypat_activate()
{
    global 
$db;
    require 
"../inc/adminfunctions_templates.php";
    
find_replace_templatesets("header_welcomeblock_member"'#'.preg_quote('{$lang->welcome_todaysposts}</a>').'#''{$lang->welcome_todaysposts}</a> | <a href="search.php?action=finduser&uid={\$mybb->user[\'uid\']}">Meine Beiträge</a> | <a href="search.php?action=finduserthreads&uid={\$mybb->user[\'uid\']}">Meine Themen</a> ');

    
// Rebuild settings
    
rebuildsettings();
}

// Deactivate plugin
function mypat_deactivate()
{
    global 
$db;
    require 
"../inc/adminfunctions_templates.php";
    
find_replace_templatesets("header_welcomeblock_member"'#'.preg_quote(' | <a href="search.php?action=finduser&uid={$mybb->user[\'uid\']}">Meine Beiträge</a> | <a href="search.php?action=finduserthreads&uid={$mybb->user[\'uid\']}">Meine Themen</a> ').'#''',0);

    
// Rebuild settings
    
rebuildsettings();
}
?>

Jedes mal wenn ich es Deaktiviere und wieder Aktiviere wird das Plugin einmal mehr Angezeigt?

http://wildweststyle.bplaced.net/Upload/index.php
Usernam+Kenwort
test
123456


RE: mypat Plugin - StefanT - 31.07.2008

Lösche doch einfach den doppelten Code im Template.


RE: mypat Plugin - wWs - 31.07.2008

Eigendlich brauche ich das Plugin gar nicht oder?

Ich kann ja einfach alle verlinkungen einsetzten?
PHP-Code:
<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a>
<
a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a
<
a href="search.php?action=finduser&uid={$mybb->user['uid']}">Meine Beiträge</a
<
a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">Meine Themen</a>
<
a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage



RE: mypat Plugin - StefanT - 31.07.2008

Ja natürlich, mehr macht der Plugin ja auch nicht. Wink


RE: mypat Plugin - wWs - 31.07.2008

omg ich danke mal wieder Wink