MyBB Depo Forum
[MCTR - 1.6] GoMobile Plugin - Mobil Wap - İphone ile erişim imkanı - Baskı Önizleme

+- MyBB Depo Forum (https://mybbdepo.com)
+-- Forum: MyBB 1.6 Depo (https://mybbdepo.com/mybb-1-6-depo-forumu)
+--- Forum: MyBB 1.6 Modifikasyon & Eklenti Deposu (https://mybbdepo.com/mybb-1-6-modifikasyon-eklenti-deposu-forumu)
+---- Forum: Diğer Eklentiler (https://mybbdepo.com/diger-eklentiler-forumu)
+---- Konu Başlığı: [MCTR - 1.6] GoMobile Plugin - Mobil Wap - İphone ile erişim imkanı (/gomobile-plugin-mobil-wap-iphone-ile-erisim-imkani-konusu.html)

Sayfalar: 1 2 3 4


Cvp: GoMobile Plugin - Mobil Wap - İphone ile erişim imkanı - -NmDahmeT - 21-06-2014

Eklentinin beta sürümü hata veriyor. İlk versiyonuda ufak hata veriyor. Verdiği hata: usercp.php?action=options sayfası beyaz bir sayfa oluyor. Çözümü basit

Rar arşivindeki inc/plugins/gomobile.php 'yi şu şekilde düzeltin:

Kodların hepsini silin bu kodları girin.

PHP Kod:
<?php
/*
* MyBB GoMobile - 1.0
* Licensed under GNU/GPL v3
*/

// 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.<br /><br />mybbdepo.com");
}

// Theme overriding
$plugins->add_hook("global_start""gomobile_forcetheme");

// Used to insert data into the posts/threads table for posts made via GoMobile
$plugins->add_hook("datahandler_post_insert_post""gomobile_posts");
$plugins->add_hook("datahandler_post_insert_thread_post""gomobile_threads");

// Page numbers
$plugins->add_hook("showthread_end""gomobile_showthread");

// UCP options
//$plugins->add_hook("usercp_options_end", "gomobile_usercp_options");
//$plugins->add_hook("usercp_do_options_end", "gomobile_usercp_options");

// Misc. hooks
$plugins->add_hook("misc_start""gomobile_switch_version");

// Plugin information
function gomobile_info()
{
    global 
$lang;
    
    
$lang->load("gomobile");

    
// Plugin information
    
return array(
        
"name"            => $lang->gomobile,
        
"description"    => $lang->gomobile_desc,
        
"website"        => "http://www.mybbgm.com",
        
"author"        => "MyBB GoMobile",
        
"authorsite"    => "http://www.mybbgm.com",
        
"version"        => "1.0",
        
"compatibility" => "16*"
    
);
}

// Installation functions
function gomobile_install()
{
    global 
$db$mybb$lang;

    
$lang->load("gomobile");
    
    
// Clean up the database before installing
    // MyBB tables cleanup
    
if($db->field_exists("mobile""posts"))
    {
        
$db->query("ALTER TABLE ".TABLE_PREFIX."posts DROP COLUMN mobile");
    }
        
    if(
$db->field_exists("mobile""threads"))
    {
        
$db->query("ALTER TABLE ".TABLE_PREFIX."threads DROP COLUMN mobile");
    }
        
    if(
$db->field_exists("usemobileversion""users"))
    {
        
$db->query("ALTER TABLE ".TABLE_PREFIX."users DROP COLUMN usemobileversion");
    }
    
    
// Settings cleanup
    
$db->query("DELETE FROM ".TABLE_PREFIX."settinggroups WHERE name='gomobile'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_header_text'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_theme_id'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_permstoggle'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_homename'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_homelink'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_strings'");

    
// Add a column to the posts & threads tables for tracking mobile posts
    
$db->query("ALTER TABLE ".TABLE_PREFIX."posts ADD mobile int NOT NULL default '0'");
    
$db->query("ALTER TABLE ".TABLE_PREFIX."threads ADD mobile int NOT NULL default '0'");

    
// And another to the users table for options
    
$db->query("ALTER TABLE ".TABLE_PREFIX."users ADD usemobileversion int NOT NULL default '1'");

    
// First, check that our theme doesn't already exist
    
$query $db->simple_select("themes""tid""LOWER(name) LIKE '%mybb gomobile%'");
    if(
$db->num_rows($query))
    {
        
// Theme is already installed
        
$theme $db->fetch_field($query"tid");
    }
    else
    {
        
// Import the theme for our users
        
$theme MYBB_ROOT."inc/plugins/gomobile_theme.xml";
        if(!
file_exists($theme))
        {
            
flash_message("Devam etmeden önce eklenti dizinine (. / Inc / plugins /) XML GoMobile Tema yükleyin.""error");
            
admin_redirect("index.php?module=config/plugins");
        }

        
$contents = @file_get_contents($theme);
        if(
$contents)
        {
            
$options = array(
                
'no_stylesheets' => 0,
                
'no_templates' => 0,
                
'version_compat' => 1,
                
'parent' => 1,
                
'force_name_check' => true,
            );

            require_once 
MYBB_ADMIN_DIR."inc/functions_themes.php";
            
$theme import_theme_xml($contents$options);
        }
    }

    
// Default strings
    
$strings "iPhone
iPod
mobile
Android
Opera Mini
BlackBerry
IEMobile
Windows Phone
HTC
Nokia
Netfront
SmartPhone
Symbian
SonyEricsson
AvantGo
DoCoMo
Pre/
UP.Browser
Playstation Vita"
;

    
// Edit existing templates (shows when posts are from GoMobile)
    
require_once MYBB_ROOT."inc/adminfunctions_templates.php";

    
find_replace_templatesets("postbit_posturl"'#'.preg_quote('<span').'#''<img src="{$mybb->settings[\'bburl\']}/images/mobile/posted_{$post[\'mobile\']}.gif" alt="" width="{$post[\'mobile\']}8" height="{$post[\'mobile\']}8" title="{$lang->gomobile_posted_from}" style="vertical-align: middle;" /> '.'<span');

    
// Prepare to insert the settings
    
$setting_group = array
    (
        
"gid" => 0,
        
"name" => "gomobile",
        
"title" => "GoMobile Ayarları",
        
"description" => "MyBB GoMobile eklentisi için seçnekler, ayarlar ve dizeler.",
        
"disporder" => 1,
        
"isdefault" => 0,
    );

    
$gid $db->insert_query("settinggroups"$setting_group);
    
$dispnum 0;

    
$settings = array(
        
"gomobile_mobile_name" => array(
            
"title"            => $lang->gomobile_settings_mobile_name_title,
            
"description"    => $lang->gomobile_settings_mobile_name,
            
"optionscode"    => "text",
            
"value"            => $db->escape_string($mybb->settings['bbname']),
            
"disporder"        => ++$dispnum
        
),
        
"gomobile_theme_id" => array(
            
"title"            => $lang->gomobile_settings_theme_id_title,
            
"description"    => $lang->gomobile_settings_theme_id,
            
"optionscode"    => "text",
            
"value"            => $theme,
            
"disporder"        => ++$dispnum
        
),
        
"gomobile_permstoggle" => array(
            
"title"            => $lang->gomobile_settings_permstoggle_title,
            
"description"    => $lang->gomobile_settings_permstoggle,
            
"optionscode"    => "yesno",
            
"value"            => 0,
            
"disporder"        => ++$dispnum
        
),
        
"gomobile_homename" => array(
            
"title"            => $lang->gomobile_settings_homename_title,
            
"description"    => $lang->gomobile_settings_homename,
            
"optionscode"    => "text",
            
"value"            => $db->escape_string($mybb->settings['homename']),
            
"disporder"        => ++$dispnum
        
),
        
"gomobile_homelink" => array(
            
"title"            => $lang->gomobile_settings_homelink_title,
            
"description"    => $lang->gomobile_settings_homelink,
            
"optionscode"    => "text",
            
"value"            => $db->escape_string($mybb->settings['homeurl']),
            
"disporder"        => ++$dispnum
        
),
        
"gomobile_strings" => array(
            
"title"            => $lang->gomobile_settings_strings_title,
            
"description"    => $lang->gomobile_settings_strings,
            
"optionscode"    => "textarea",
            
"value"            => $db->escape_string($strings),
            
"disporder"        => ++$dispnum
        
)
    );

    
// Insert the settings listed above
    
foreach($settings as $name => $setting)
    {
        
$setting['gid'] = $gid;
        
$setting['name'] = $name;

        
$db->insert_query("settings"$setting);
    }
    
rebuild_settings();
}

// Checks to see if the plugin is installed already
function gomobile_is_installed()
{
    global 
$db;
    
    
// Is the cache [the last installation step performed] ready for use?
    
$installed $db->simple_select("settings""*""name='gomobile_strings'");

    if(
$db->num_rows($installed))
    {
        return 
true;
    }
    return 
false;
}

// Uninstall MyBB GoMobile
// Not that anyone would want to do that, right? ;P
function gomobile_uninstall()
{
    global 
$db$cache;

    
// Smarter uninstall, same as install function's cleanup
    // MyBB tables cleanup
    
if($db->field_exists("mobile""posts"))
    {
        
$db->query("ALTER TABLE ".TABLE_PREFIX."posts DROP COLUMN mobile");
    }
        
    if(
$db->field_exists("mobile""threads"))
    {
        
$db->query("ALTER TABLE ".TABLE_PREFIX."threads DROP COLUMN mobile");
    }
        
    if(
$db->field_exists("usemobileversion""users"))
    {
        
$db->query("ALTER TABLE ".TABLE_PREFIX."users DROP COLUMN usemobileversion");
    }
    
    
// Settings cleanup
    
$db->query("DELETE FROM ".TABLE_PREFIX."settinggroups WHERE name='gomobile'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_header_text'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_theme_id'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_permstoggle'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_homename'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_homelink'");
    
$db->query("DELETE FROM ".TABLE_PREFIX."settings WHERE name='gomobile_strings'");

    
// Can the template edits we made earlier
    
require_once MYBB_ROOT."inc/adminfunctions_templates.php";

    
// Undo the template edits
    
find_replace_templatesets("postbit_posturl"'#'.preg_quote('<img src="{$mybb->settings[\'bburl\']}/images/mobile/posted_{$post[\'mobile\']}.gif" alt="" width="{$post[\'mobile\']}8" height="{$post[\'mobile\']}8" title="{$lang->gomobile_posted_from}" style="vertical-align: middle;" /> '.'').'#'''0);
}

// This function checks if the UA string matches the database
// If so, it displays the GoMobile theme
function gomobile_forcetheme()
{
    global 
$db$mybb$plugins$cache$lang;
    
    
$lang->load("gomobile");

    if(
$mybb->session->is_spider == false)
    {
        
// Force some changes to our footer, but only if we're not a bot
        
$GLOBALS['gmb_orig_style'] = intval($mybb->user['style']);
        
$GLOBALS['gmb_post_key'] = md5($mybb->post_code);

        
$plugins->add_hook("global_end""gomobile_forcefooter");
    }

    
// Has the user chosen to disable GoMobile completely?
    
if(isset($mybb->user['usemobileversion']) && $mybb->user['usemobileversion'] == && $mybb->user['uid'] && $mybb->cookies['gomobile'] != "force" )
    {
        return 
false;
    }

    
// Has the user temporarily disabled GoMobile via cookies?
    
if($mybb->cookies['gomobile'] == "disabled")
    {
        return 
false;
    }
    
    
// Is the admin using theme permission settings?
    // If so, check them
    
if($mybb->settings['gomobile_permstoggle'] == 1)
    {
        
// Fetch the theme permissions from the database
        
$tquery $db->simple_select("themes""*""tid = '{$mybb->settings['gomobile_theme_id']}'");
        
$tperms $db->fetch_field($tquery"allowedgroups");
        
        if(
$tperms != "all")
        {
            
$canuse explode(","$tperms);
        }
    
        
// Also explode our user's additional groups
        
if($mybb->user['additionalgroups'])
        {
            
$userag explode(","$mybb->user['additionalgroups']);
        }
    
        
// If the user doesn't have permission to use the theme...
        
if($tperms != "all")
        {
            if(!
in_array($mybb->user['usergroup'], $canuse) && !in_array($userag$canuse))
            {
                return 
false;
            }
        }
    }

    
// Grab the strings and put them into an array
    
$list $mybb->settings['gomobile_strings'];
    
    
$replace = array("\n""\r");
    
$list str_replace($replace","$list);
    
$list str_replace(",,"","$list);
    
    
$list explode(","$list);

    
$switch false;
    foreach(
$list as $uastring)
    {
        
// Run as long as there hasn't been a match yet
        
if(!$switch && $uastring)
        {
            
// Switch to GoMobile if the UA matches our list
            
if(stristr($_SERVER['HTTP_USER_AGENT'], $uastring))
            {
                
$switch true;
                
$mybb->user['style'] = $mybb->settings['gomobile_theme_id'];
            }
        }
    }

    
// Have we got this far without catching somewhere? Have we enabled mobile version?
    
if($mybb->cookies['gomobile'] == "force" && $switch == false)
    {
        
$mybb->user['style'] = $mybb->settings['gomobile_theme_id'];
    }
}

// Add a link in the footer only if we're not a bot
function gomobile_forcefooter()
{
    global 
$lang$footer$mybb$navbits;

    
$footer str_replace("<a href=\"<archive_url>\">".$lang->bottomlinks_litemode."</a>""<a href=\"misc.php?action=switch_version&amp;my_post_key=".$GLOBALS['gmb_post_key']."\">".$lang->gomobile_mobile_version."</a>"$footer);
    
    
// If we have a match, override the default breadcrumb
    
if($mybb->user['style'] == $mybb->settings['gomobile_theme_id'])
    {
        
$navbits = array();
        
$navbits[0]['url'] = $mybb->settings['bburl'];
        
$navbits[0]['name'] = $mybb->settings['gomobile_mobile_name'];
    }
}

// Page numbers and links, whoop
function gomobile_showthread()
{
    global 
$mybb$lang$postcount$perpage$thread$pagejump$pages$page_location;
    
    
// Display the total number of pages
    
if($pages 0) {
        
$page_location {$lang->gomobile_of} {$pages}";
    }
    
    
// If there's more than one page, display links to the first & last posts
    
if($postcount $perpage){
        
$pj_template "<div class=\"float_left\" style=\"padding-top: 12px;\">
            <a href=\""
.get_thread_link($thread['tid'])."\" class=\"pagination_a\">{$lang->gomobile_jump_fpost}</a>
            <a href=\""
.get_thread_link($thread['tid'], 0'lastpost')."\" class=\"pagination_a\">{$lang->gomobile_jump_lpost}</a>
            </div>"
;
        
$pagejump $pj_template;
    }
}

// Was this post sent from GoMobile?
function gomobile_posts($p)
{
    global 
$mybb;

    
$is_mobile intval($mybb->input['mobile']);

    if(
$is_mobile != 1) {
        
$is_mobile 0;
    }
    else {
        
$is_mobile 1;
    }

    
// If so, we're going to store it for future use
    
$p->post_insert_data['mobile'] = $is_mobile;
    return 
$p;


// Was this thread sent from GoMobile? (identical to above, only for threads)
// Might be redundant to some people, but meh
function gomobile_threads($p)
{
    global 
$mybb;

    
$is_mobile intval($mybb->input['mobile']);
    
    if(
$is_mobile != 1) {
        
$is_mobile 0;
    }
    else {
        
$is_mobile 1;
    }

    
$p->post_insert_data['mobile'] = $is_mobile;
    return 
$p;
}

// Add GoMobile-related options to the UCP
function gomobile_usercp_options()
{
    global 
$db$mybb$templates$user;

    if(isset(
$GLOBALS['gmb_orig_style']))
    {
        
// Because we override this above, reset it to the original
        
$mybb->user['style'] = $GLOBALS['gmb_orig_style'];
    }

    if(
$mybb->request_method == "post")
    {
        
// We're saving our options here
        
$update_array = array(
            
"usemobileversion" => intval($mybb->input['usemobileversion'])
        );

        
$db->update_query("users"$update_array"uid = '".$user['uid']."'");
    }

    
$usercp_option '</tr><tr>
<td valign="top" width="1"><input type="checkbox" class="checkbox" name="usemobileversion" id="usemobileversion" value="1" {$GLOBALS[\'$usemobileversioncheck\']} /></td>
<td><span class="smalltext"><label for="usemobileversion">{$lang->gomobile_use_mobile_version}(<a href="misc.php?action=switch_version&amp;do=clear&amp;my_post_key={$GLOBALS[\'gmb_post_key\']}">{$lang->gomobile_clear_cookies}</a>)</label></span></td>'
;

    
$find '{$lang->show_codebuttons}</label></span></td>';
    
$templates->cache['usercp_options'] = str_replace($find$find.$usercp_option$templates->cache['usercp_options']);

    
// We're just viewing the page
    
$GLOBALS['$usemobileversioncheck'] = '';
    if(
$user['usemobileversion'])
    {
        
$GLOBALS['$usemobileversioncheck'] = "checked=\"checked\"";
    }
}

// Switch to the mobile view via the footer link
function gomobile_switch_version()
{
    global 
$db$lang$mybb;

    if(
$mybb->input['action'] != "switch_version")
    {
        return 
false;
    }

    
$url "index.php";
    if(isset(
$_SERVER['HTTP_REFERER']))
    {
        
$url htmlentities($_SERVER['HTTP_REFERER']);
    }

    if(
md5($mybb->post_code) != $mybb->input['my_post_key'])
    {
        
redirect($url$lang->invalid_post_code);
    }

    if(
$mybb->input['do'] == "full")
    {
        
// Disable the mobile theme
        
my_setcookie("gomobile""disabled", -1);
    }
    elseif(
$mybb->input['do'] == "clear")
    {
        
// Clear the mobile theme cookie
        
my_setcookie("gomobile""nothing", -1);
    }
    else
    {
        
// Assume we're wanting to switch to the mobile version
        
my_setcookie("gomobile""force", -1);
    }

    
$lang->load("gomobile");
    
redirect($url$lang->gomobile_switched_version);
}

?>



Cvp: GoMobile Plugin - Mobil Wap - İphone ile erişim imkanı - mustafasavas1 - 13-09-2014

Adsense reklam kodunun telefonda forumun header kısmına nasıl ekleyebilirim arkadaşlar.


Cvp: GoMobile Plugin - Mobil Wap - İphone ile erişim imkanı - SystemHack - 10-02-2015

Bu eklentiyi ve gelişmiş reklam yöneticisi kullanıyorum. Fakat normal sitede olan reklamlar direk mobil siteyede yansıyınca kullanılmaz hale geliyor. Nasıl çözüm bulabilirim?


Cvp: GoMobile Plugin - Mobil Wap - İphone ile erişim imkanı - RegardiaN - 02-08-2015

ben m.siteadı.com diye yapmak istiyorum mümkünmü