403Webshell
Server IP : 209.209.40.120  /  Your IP : 216.73.217.112
Web Server : Microsoft-IIS/10.0
System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586
User : NEWWWW$ ( 0)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/HostingSpaces/admin/chatme24.com/wwwroot/_include/current/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/HostingSpaces/admin/chatme24.com/wwwroot/_include/current/bio.php
<?php
/* (C) Websplosion LLC, 2001-2021

IMPORTANT: This is a commercial software product
and any kind of using it must agree to the Websplosion's license agreement.
It can be found at http://www.chameleonsocial.com/license.doc

This notice may not be removed from the source code. */

define('PHY_PERIOD', 23);
define('EMO_PERIOD', 28);
define('INT_PERIOD', 33);

define('DAYS_TO_SHOW', 30);
define('DIAGRAM_WIDTH', 400);
define('DIAGRAM_HEIGHT',250);

define('FILE_FOR_DIAG', 'slika2.png');

define('CURVE_TEXT_PHY', 'Physical');
define('CURVE_TEXT_EMO', 'Emotional');
define('CURVE_TEXT_INT', 'Intellectual');

if (isset($gm) and $gm)
{
    define('BACK_C_R', 255);
    define('BACK_C_G', 186);
    define('BACK_C_B', 0);

    define('GRID_C_R', 53);
    define('GRID_C_G', 108);
    define('GRID_C_B', 165);

    define('PHY_C_R', 207);
    define('PHY_C_G', 0);
    define('PHY_C_B', 0);

    define('EMO_C_R', 0);
    define('EMO_C_G', 107);
    define('EMO_C_B', 0);

    define('INT_C_R', 0);
    define('INT_C_G', 0);
    define('INT_C_B', 112);
}
elseif (isset($gc) and $gc)
{
    define('BACK_C_R', 224);
    define('BACK_C_G', 211);
    define('BACK_C_B', 129);

    define('GRID_C_R', 53);
    define('GRID_C_G', 108);
    define('GRID_C_B', 165);

    define('PHY_C_R', 207);
    define('PHY_C_G', 0);
    define('PHY_C_B', 0);

    define('EMO_C_R', 0);
    define('EMO_C_G', 107);
    define('EMO_C_B', 0);

    define('INT_C_R', 0);
    define('INT_C_G', 0);
    define('INT_C_B', 112);
}
else
{
    define('BACK_C_R', 224);
    define('BACK_C_G', 211);
    define('BACK_C_B', 129);

    define('GRID_C_R', 0);
    define('GRID_C_G', 0);
    define('GRID_C_B', 0);

    define('PHY_C_R', 207);
    define('PHY_C_G', 0);
    define('PHY_C_B', 0);

    define('EMO_C_R', 0);
    define('EMO_C_G', 107);
    define('EMO_C_B', 0);

    define('INT_C_R', 0);
    define('INT_C_G', 0);
    define('INT_C_B', 112);
}

class BioR 
{
    function __construct($birth_date, $date_for_bior = -1) {

        if ($date_for_bior == -1)
            $date_for_bior = date('Y-m-d', time());

        // date for bior - timestamp
        $this->date_for_bior_epoch = strtotime($date_for_bior);

        // dateparts for birth_date
        $birth_date_parts = explode('-', $birth_date);
        list ($this->birth_date_y, $this->birth_date_m, $this->birth_date_d) = $birth_date_parts;

        // dateparts for date_for_bior
        $date_for_bior_parts = explode('-', $date_for_bior);
        list ($this->date_for_bior_y, $this->date_for_bior_m, $this->date_for_bior_d) = $date_for_bior_parts;

    }
    function grgtojd ($month,$day,$year) {
        if ($month > 2) {
            $month = $month - 3;
        } else {
            $month = $month + 9;
            $year = $year - 1;
        }
        $c = floor($year / 100);
        $ya = $year - (100 * $c);
        $j = floor((146097 * $c) / 4);
        $j += floor((1461 * $ya)/4);
        $j += floor(((153 * $month) + 2) / 5);
        $j += $day + 1721119;
        return $j;
    }
    function GetDaysFromBirth (){

        // transform date to number of Julian days and substract two dates to get "num of days alive"
        $this->days_from_birth = abs($this->grgtojd($this->birth_date_m, $this->birth_date_d, $this->birth_date_y)
        - $this->grgtojd($this->date_for_bior_m, $this->date_for_bior_d, $this->date_for_bior_y));

        return $this->days_from_birth;
    }
    function DrawBior ($file_for_diag = FILE_FOR_DIAG) {

        // set handler
        $this->file_for_diag = $file_for_diag;

        // create image
        $this->image = imagecreate (DIAGRAM_WIDTH ,DIAGRAM_HEIGHT);

        // allocate colors for gdlib
        $color_grid = imagecolorallocate ($this->image, GRID_C_R, GRID_C_G, GRID_C_B);
        $color_phy = imagecolorallocate ($this->image, PHY_C_R, PHY_C_G, PHY_C_B);
        $color_emo = imagecolorallocate ($this->image, EMO_C_R, EMO_C_G, EMO_C_B);
        $color_int = imagecolorallocate ($this->image, INT_C_R, INT_C_G, INT_C_B);
        $color_back = imagecolorallocate ($this->image, BACK_C_R, BACK_C_G, BACK_C_B);

        // draw background
        imagefilledrectangle ($this->image, 0, 0, DIAGRAM_WIDTH - 1, DIAGRAM_HEIGHT - 1, $color_back);


        $nrSecondsPerDay = 60 * 60 * 24;
        $diagramDate = $this->date_for_bior_epoch - (DAYS_TO_SHOW / 2 * $nrSecondsPerDay) + $nrSecondsPerDay;


        // draw days and separators
        for ($i = 1; $i < DAYS_TO_SHOW; $i++) {
            $thisDate = getdate($diagramDate);
            $xCoord = (DIAGRAM_WIDTH / DAYS_TO_SHOW) * $i;

             imageline($this->image, $xCoord, DIAGRAM_HEIGHT - 25, $xCoord, DIAGRAM_HEIGHT - 20, $color_grid);
             imagestring($this->image, 1, $xCoord - 5, DIAGRAM_HEIGHT - 16, $thisDate[ "mday"], $color_grid);

             $diagramDate += $nrSecondsPerDay;
        }

        // draw some diagram elements
        imageline($this->image, 0, (DIAGRAM_HEIGHT - 20) / 2, DIAGRAM_WIDTH, (DIAGRAM_HEIGHT - 20) / 2, $color_grid);
        imageline($this->image, DIAGRAM_WIDTH / 2, 0, DIAGRAM_WIDTH / 2, DIAGRAM_HEIGHT - 20, $color_grid);
        imagestring($this->image, 2, DIAGRAM_WIDTH - 30, 5, '100%' , $color_grid);
        imagestring($this->image, 2, DIAGRAM_WIDTH - 35, DIAGRAM_HEIGHT - 45, '-100%' , $color_grid);
        imagestring($this->image, 2, 5, DIAGRAM_HEIGHT - 45, date('m-Y', $this->date_for_bior_epoch) , $color_grid);
        imagestring($this->image, 2, 10, 10, '<-- '.$this->birth_date_d.'/'.$this->birth_date_m.'/'.$this->birth_date_y, $color_grid);
        imagestring($this->image, 4, 10, 30, CURVE_TEXT_PHY , $color_phy);
        imagestring($this->image, 4, 10, 45, CURVE_TEXT_EMO , $color_emo);
        imagestring($this->image, 4, 10, 60, CURVE_TEXT_INT , $color_int);

        // call functions for curve drawing

        $this->DrawCurve ($this->GetDaysFromBirth(), PHY_PERIOD, $color_phy);
        $this->DrawCurve ($this->GetDaysFromBirth(), EMO_PERIOD, $color_emo);
        $this->DrawCurve ($this->GetDaysFromBirth(), INT_PERIOD, $color_int);

        // write diagram image to disk
        imagepng ($this->image, $this->file_for_diag);


    }
    function DrawCurve ($days_from_birth, $period, $color) {

        $centerDay = $this->GetDaysFromBirth() - (DAYS_TO_SHOW / 2);
        $plotScale = (DIAGRAM_HEIGHT - 25) / 2;
        $plotCenter = (DIAGRAM_HEIGHT - 25) / 2;

        for($x = 0; $x <= DAYS_TO_SHOW; $x++) {
            $phase = (($centerDay + $x) % $period) / $period * 2 * pi();
            $y = 1 - sin($phase) * (float)$plotScale + (float)$plotCenter;

            if($x > 0) {
                imageline($this->image, $oldX, $oldY, $x * DIAGRAM_WIDTH / DAYS_TO_SHOW, $y, $color);
            }
            $oldX = $x * DIAGRAM_WIDTH / DAYS_TO_SHOW;
            $oldY = $y;
        }
    }
    function GetPercentageForToday ($period) {

        // get y value in degrees for given day for given period
        $y = ceil(sin(deg2rad($this->GetDaysFromBirth() * (360 / $period))) * 100);
        $y2 = ceil(sin(deg2rad(($this->GetDaysFromBirth() + 1) * (360 / $period))) * 100);

        // find out trend
        if ($y > $y2)
            $this->trend = 0;
        else
            $this->trend = 1;

        return array('percent' => $y, 'trend' => $this->trend);
    }
    function GetAverage () {

        $phy = $this->GetPercentageForToday(PHY_PERIOD);
        $emo = $this->GetPercentageForToday(EMO_PERIOD);
        $int = $this->GetPercentageForToday(INT_PERIOD);

        if ($phy['trend'] + $emo['trend'] + $int['trend'] >= 2)
            $avg_trend = 1;
        else
            $avg_trend = 0;

        return array ('percent' => ceil(($phy['percent'] + $emo['percent'] + $int['percent']) / 3),
        'trend' => $avg_trend);

    }
    function GetAllPercentages () {

        return array("phy"=>$this->GetPercentageForToday(PHY_PERIOD),
        "emo"=>$this->GetPercentageForToday(EMO_PERIOD),
        "int"=>$this->GetPercentageForToday(INT_PERIOD),
        "avg"=>$this->GetAverage()
        );

    }
    function GetDiagramFileHandler () {
        return $this->file_for_diag;
    }
    function GetDiagramImageTag () {
        return "<img src=\"$this->file_for_diag\">";
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit