<?php
/***************************************************************************
* Copyright (C) 2009-2011 by Geo Varghese(www.seopanel.in) *
* hide@address.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
# func to format error message
function formatErrorMsg($msg, $class='error', $star="*"){
if(!empty($msg)){
$msg = "<font class='$class'> $star $msg</font>";
}
return $msg;
}
# func to format success message
function formatSuccessMsg($msg, $class='success'){
if(!empty($msg)){
$msg = "<font class='$class'>$msg</font>";
}
return $msg;
}
# func to redirect url
function redirectUrl($url) {
header("Location: $url");
exit;
}
# func to redirect url
function redirectUrlByScript($url) {
print "<script>window.location='$url';</script>";
}
# func to hide div
function hideDiv($divId) {
print "<script>hideDiv('$divId')</script>";
}
# func to show div
function showDiv($divId) {
print "<script>showDiv('$divId')</script>";
exit;
}
# func to show no results
function showNoRecordsList($colspan, $msg='', $plain=false) {
$msg = empty($msg) ? $_SESSION['text']['common']['No Records Found']."!" : $msg;
$data['colspan'] = $colspan;
$data['msg'] = $msg;
$data['plain'] = $plain;
return View::fetchViewFile('common/norecords', $data);
}
# func to show error msg
function showErrorMsg($errorMsg, $exit=true) {
$data['errorMsg'] = $errorMsg;
print View::fetchViewFile('common/error', $data);
if($exit) exit;
}
# func to show success msg
function showSuccessMsg($successMsg, $exit=true) {
$data['successMsg'] = $successMsg;
print View::fetchViewFile('common/success', $data);
if($exit) exit;
}
# func to show no results
function showSectionHead($sectionHead) {
$data['sectionHead'] = $sectionHead;
return View::fetchViewFile('common/sectionHead', $data);
}
# function to check whether user logged in
function checkLoggedIn() {
$userInfo = Session::readSession('userInfo');
if(empty($userInfo['userId'])){
redirectUrlByScript(SP_WEBPATH."/login.php");
exit;
}
}
# function to check whether admin logged in
function checkAdminLoggedIn() {
$userInfo = Session::readSession('userInfo');
if(empty($userInfo['userType']) || ($userInfo['userType'] != 'admin') ) {
redirectUrlByScript(SP_WEBPATH."/login.php");
exit;
}
}
# function to user is admin or not
function isAdmin() {
$userInfo = Session::readSession('userInfo');
return ($userInfo['userType'] == 'admin') ? $userInfo['userId'] : false;
}
# function to user logged in or not
function isLoggedIn() {
$userInfo = Session::readSession('userInfo');
return empty($userInfo['userId']) ? false : $userInfo['userId'];
}
# get functions
function scriptGetAJAXLink($file, $area, $args='', $trigger='OnClick'){
$link = ' '.$trigger.'="scriptDoLoad('."'$file', '$area', '$args')".'"';
return $link;
}
function confirmScriptAJAXLink($file,$area,$trigger='OnClick'){
$link = ' '.$trigger.'="confirmLoad('."'$file', '$area', '$args')".'"';
return $link;
}
function scriptAJAXLinkHref($file, $area, $args='', $linkText='Click', $class='', $trigger='OnClick'){
if ($file == 'demo') {
$link = ' '.$trigger.'="alertDemoMsg()"';
} else {
$link = ' '.$trigger.'="scriptDoLoad('."'$file', '$area', '$args')".'"';
}
$link = "<a href='javascript:void(0);'class='$class' $link>$linkText</a>";
return $link;
}
function confirmScriptAJAXLinkHref($file, $area, $args='', $linkText='Click', $trigger='OnClick'){
$link = ' '.$trigger.'="confirmLoad('."'$file', '$area', '$args')".'"';
$link = "<a href='javascript:void(0);'class='$class' $link>$linkText</a>";
return $link;
}
#post functions
function scriptPostAJAXLink($file, $form, $area, $trigger='OnClick'){
$link = ' '.$trigger.'="scriptDoLoadPost('."'$file', '$form', '$area')".'"';
return $link;
}
function confirmPostAJAXLink($file, $form, $area, $trigger='OnClick'){
$link = ' '.$trigger.'="confirmSubmit('."'$file', '$form', '$area')".'"';
return $link;
}
function formatUrl( $url, $removeWWW=true ) {
$url = str_replace('http://', '', $url);
$url = str_replace('https://', '', $url);
if ($removeWWW) $url = str_replace('www.', '', $url);
return $url;
}
function addHttpToUrl($url){
if(!stristr($url, 'http://') && !stristr($url, 'https://')){
$url = 'http://'.$url;
}
return $url;
}
function formatFileName( $fileName ) {
$search = array(' ', '/', ':');
$replace = array('_', '', '');
$fileName = str_replace($search, $replace, $fileName);
return $fileName;
}
function showActionLog($msg, $area='subcontent'){
echo "<script type='text/javascript'>updateArea('$area', '$msg')</script>";
}
//function to update perticular area using javascript
function updateJsLocation($area, $text) {
echo "<script type='text/javascript'>document.getElementById('$area').innerHTML = '$text';</script>";
}
function loadGif ($imgname){
$im = @imagecreatefromgif ($imgname);
if (!$im) {
$im = imagecreatetruecolor (150, 30);
$bgc = imagecolorallocate ($im, 255, 255, 255);
$tc = imagecolorallocate ($im, 0, 0, 0);
imagefilledrectangle ($im, 0, 0, 150, 30, $bgc);
imagestring ($im, 1, 5, 5, "Error loading $imgname", $tc);
}
return $im;
}
# func to check whether logged in user having website
function isHavingWebsite() {
$userId = isLoggedIn();
$websiteCtrl = New WebsiteController();
$count = isAdmin() ? $websiteCtrl->__getCountAllWebsites() : $websiteCtrl->__getCountAllWebsites($userId);
if($count<=0){
redirectUrl(SP_WEBPATH."/admin-panel.php?sec=newweb");
}
}
# function to create plugin ajax get method
function pluginGETMethod($args='', $area='content'){
$script = "seo-plugins.php?pid=".PLUGIN_ID;
$request = "scriptDoLoad('$script', '$area', '$args')";
return $request;
}
# function to create plugin ajax post method
function pluginPOSTMethod($formName, $area='content', $args=''){
$args = "&pid=".PLUGIN_ID."&$args";
$request = "scriptDoLoadPost('seo-plugins.php', '$formName', '$area', '$args')";
return $request;
}
# function to create plugin ajax confirm get method
function pluginConfirmGETMethod($args='', $area='content'){
$script = "seo-plugins.php?pid=".PLUGIN_ID;
$request = "confirmLoad('$script', '$area', '$args')";
return $request;
}
# function to create plugin ajax confirm post method
function pluginConfirmPOSTMethod($formName, $area='content', $args=''){
$args = "&pid=".PLUGIN_ID."&$args";
$request = "confirmSubmit('seo-plugins.php', '$formName', '$area', '$args')";
return $request;
}
# func to create plugin menu
function pluginMenu($args='', $area='content') {
$pluginId = Session::readSession('plugin_id');
$script = "seo-plugins.php?pid=".$pluginId;
$request = "scriptDoLoad('$script', '$area', '$args')";
return $request;
}
# func to remove new lines from a string
function removeNewLines($value) {
$value = preg_replace('/[\r\n]*/', '', $value);
$value = preg_replace('/[\r\n]+/', '', $value);
return $value;
}
# func to get current url
function getCurrentUrl() {
// to fix the issues with IIS
if (!isset($_SERVER['REQUEST_URI'])) {
$_SERVER['REQUEST_URI'] = substr($_SERVER['PHP_SELF'],1 );
if (isset($_SERVER['QUERY_STRING'])) {
$_SERVER['REQUEST_URI'].='?'.$_SERVER['QUERY_STRING'];
}
}
$reqUrl = $_SERVER['REQUEST_URI'];
$protocol = empty($_SERVER['HTTPS']) ? "http://" : "https://";
$port = empty($_SERVER['SERVER_PORT']) ? "" : (int) $_SERVER['SERVER_PORT'];
$host = strtolower($_SERVER['HTTP_HOST']);
if(!empty($port) && ($port <> 443) && ($port <> 80)){
if(strpos($host, ':') === false){ $host .= ':' . $port; }
}
$webPath = $protocol.$host.$reqUrl;
return $webPath;
}
# function to check whether refferer is from same site
function isValidReferer($referer) {
if(stristr($referer, SP_WEBPATH)) {
if (!stristr($referer, 'install')) {
return $referer;
}
}
return '';
}
# func to create export content
function createExportContent($list) {
return '"'.implode('","',$list)."\"\r\n";
}
# func to export data to csv file
function exportToCsv($fileName, $content) {
$fileName = $fileName."_".date("Y-m-d",time());
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header( "Content-disposition: filename=".$fileName.".csv");
print $content;
exit;
}
# func to show printer hearder
function showPrintHeader($headMsg='', $doPrint=true) {
?>
<script language="Javascript" src="<?=SP_JSPATH?>/common.js"></script>
<script type="text/javascript">
<?php if ($doPrint) { ?>
window.print();
<?php }?>
loadJsCssFile("<?=SP_CSSPATH?>/screen.css", "css");
</script>
<style>BODY{background-color:white;padding:50px 10px;}</style>
<?php
if (!empty($headMsg)) echo showSectionHead($headMsg);
}
# func to show printer footer
function showPrintFooter($spText) {
?>
<div style="clear: both; margin-top: 10px;"><?php echo str_replace('[year]', date('Y'), $spText['common']['copyright'])?></div>
<?php
}
# func to debug the variables
function debugVar($value) {
echo "<pre>";print_r($value);echo "</pre>";
}
# func to send mail
function sendMail($from, $fromName, $to ,$subject,$content){
$mail = new PHPMailer();
# check whether the mail send by smtp or not
if(SP_SMTP_MAIL){
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->Host = SP_SMTP_HOST;
$mail->Username = SP_SMTP_USERNAME;
$mail->Password = SP_SMTP_PASSWORD;
}
$mail->From = $from;
$mail->FromName = $fromName;
$mail->AddAddress($to, "");
$mail->WordWrap = 70;
$mail->IsHTML(true);
$mail->Subject = $subject;
$mail->Body = $content;
if(!$mail->Send()){
return 0;
}else{
return 1;
}
}
# func to sanitize data to prevent attacks
function sanitizeData($data, $stripTags=true, $addSlashes=false) {
if (is_array($data)) {
foreach ($data as $col => $val) {
if ( ($col == 'password') || ($col== 'confirmPassword') ) {
continue;
}
if ($stripTags) {
$val = strip_tags($val);
}
if ($addSlashes) {
$val = addslashes($val);
}
$data[$col] = $val;
}
} else {
if ($stripTags) {
$data = strip_tags($data);
}
if ($addSlashes) {
$data = addslashes($data);
}
}
return $data;
}
# func to get rounded tab top
function getRoundTabTop(){
$content = '
<b class="round_border">
<b class="round_border_layer3"></b>
<b class="round_border_layer2"></b>
<b class="round_border_layer1"></b>
</b>
';
return $content;
}
# func to get rounded tab bottom
function getRoundTabBot(){
$content = '
<b class="round_border">
<b class="round_border_layer1"></b>
<b class="round_border_layer2"></b>
<b class="round_border_layer3"></b>
</b>
';
return $content;
}
?>