原始碼推薦:基於uni-app前端框架,開源版本還開源免費商用

adminbiubiu發表於2020-08-07

今天要給大家介紹一款電商軟體,目前有兩個主流版本:免費開源版、商業開源版。首先需要和大家普及下什麼是開源軟體?

提到開源,一定繞不開Linux。Linux 是一款開源軟體,我們可以隨意瀏覽和修改它的原始碼,學習 Linux,不得不談到開源精神。Linux 本身就是開源精神的受益者,它幾乎是全球最大的開源軟體。

簡單來說,開源軟體就是把軟體程式與原始碼檔案一起打包提供給使用者,使用者既可以不受限制地使用該軟體的全部功能,也可以根據自己的需求修改原始碼,甚至編製成衍生產品再次釋出出去。

使用者具有使用自由、修改自由、重新發布自由和建立衍生品自由,這正好符合了駭客和極客對自由的追求,因此開源軟體在國內外都有著很高的人氣,大家聚集在開源社群,共同推動開源軟體的進步。

但是大家主要這裡面沒有提供收費與免費的開源,而是對程式碼的修改不做限制,所以 我個人用一句白話的理解就是:可以二次開發,沒有商業限制。

那麼今天介紹的這一款軟體及時如此,首先他們的開源性毋庸置疑,所有版本的程式碼都是無加密,免費版本、商業版本都是可以商用的!而這個對於初創企業不要太好,商業模式不清楚的情況下,小步試錯,初有成就之後買個商業版本,把商業版圖擴大!

進入正題,揭開神秘面紗:

我也是親身購買、使用後才給大家推薦的,可以去聯絡和我對接的那個客服。90後,技術出身,聊起來容易理解,不至於雞同鴨講,三兩句能說清楚的需求絕對廢話! 15205564163,這個是他的電話/微信 ,代號 章魚

原始碼推薦:基於uni-app前端框架,開源版本還開源免費商用

小程式前端樣式,簡潔大方

原始碼推薦:基於uni-app前端框架,開源版本還開源免費商用

豐富的營銷功能

那麼就產品本身而言,有什麼亮點值得大家入手,值得我來推薦的呢?

貼出一些程式碼片段:

<?php
// +---------------------------------------------------------------------------+
// | This file is part of the core package. |
// | Copyright (c) laiketui.com |
// | |
// | For the full copyright and license information, please view the LICENSE |
// | file that was distributed with this source code. You can also view the |
// | LICENSE file online at |
// +---------------------------------------------------------------------------+
/**
* BasicSecurityUser will handle any type of data as a credential.
*
* @package laiketui
* @subpackage user
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
class  BasicSecurityUser  extends  SecurityUser
{
// +-----------------------------------------------------------------------+
// | CONSTANTS |
// +-----------------------------------------------------------------------+
/**
* The namespace under which authenticated status will be stored.
*/
const  AUTH_NAMESPACE  =  'org/mojavi/user/BasicSecurityUser/authenticated' ;
/**
* The namespace under which credentials will be stored.
*/
const  CREDENTIAL_NAMESPACE  =  'org/mojavi/user/BasicSecurityUser/credentials' ;
// +-----------------------------------------------------------------------+
// | PRIVATE VARIABLES |
// +-----------------------------------------------------------------------+
private
$authenticated  =  null ,
$credentials  =  null ;
// +-----------------------------------------------------------------------+
// | METHODS |
// +-----------------------------------------------------------------------+
/**
* Add a credential to this user.
*
* @param mixed Credential data.
*
* @return void
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
public  function  addCredential  ( $credential )
{
if  ( ! in_array ( $credential ,  $this -> credentials ))
{
$this -> credentials []  =  $credential ;
}
}
// -------------------------------------------------------------------------
/**
* Clear all credentials associated with this user.
*
* @return void
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
public  function  clearCredentials  ()
{
$this -> credentials  =  null ;
$this -> credentials  =  array ();
}
// -------------------------------------------------------------------------
/**
* Indicates whether or not this user has a credential.
*
* @param mixed Credential data.
*
* @return bool true, if this user has the credential, otherwise false.
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
public  function  hasCredential  ( $credential )
{
return  ( in_array ( $credential ,  $this -> credentials ));
}
// -------------------------------------------------------------------------
/**
* Initialize this User.
*
* @param Context A Context instance.
* @param array An associative array of initialization parameters.
*
* @return bool true, if initialization completes successfully, otherwise
* false.
*
* @throws <b>InitializationException</b> If an error occurs while
* initializing this User.
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
public  function  initialize  ( $context ,  $parameters  =  null )
{
// initialize parent
parent :: initialize ( $context ,  $parameters );
// read data from storage
$storage  =  $this -> getContext () -> getStorage ();
$this -> authenticated  =  $storage -> read ( self :: AUTH_NAMESPACE );
$this -> credentials  =  $storage -> read ( self :: CREDENTIAL_NAMESPACE );
if  ( $this -> authenticated  ==  null )
{
// initialize our data
$this -> authenticated  =  false ;
$this -> credentials  =  array ();
}
}
// -------------------------------------------------------------------------
/**
* Indicates whether or not this user is authenticated.
*
* @return bool true, if this user is authenticated, otherwise false.
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
public  function  isAuthenticated  ()
{
return  $this -> authenticated ;
}
// -------------------------------------------------------------------------
/**
* Remove a credential from this user.
*
* @param mixed Credential data.
*
* @return void
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
public  function  removeCredential  ( $credential )
{
if  ( $this -> hasCredential ( $credential ))
{
// we have the credential, now we have to find it
// let's not foreach here and do exact instance checks
// for future safety
for  ( $i  =  0 ,  $z  =  count ( $this -> credentials );  $i  <  $z ;  $i ++ )
{
if  ( $credential  ==  $this -> credentials [ $i ])
{
// found it, let's nuke it
unset ( $this -> credentials [ $i ]);
return ;
}
}
}
}
// -------------------------------------------------------------------------
/**
* Set the authenticated status of this user.
*
* @param bool A flag indicating the authenticated status of this user.
*
* @return void
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
public  function  setAuthenticated  ( $authenticated )
{
if  ( $authenticated  ===  true )
{
$this -> authenticated  =  true ;
return ;
}
$this -> authenticated  =  false ;
}
// -------------------------------------------------------------------------
/**
* Execute the shutdown procedure.
*
* @return void
*
* @author ketter (ketter@laiketui.com)
* @since 3.0.0
*/
public  function  shutdown  ()
{
$storage  =  $this -> getContext ()
-> getStorage ();
// write credentials to the storage
$storage -> write ( self :: AUTH_NAMESPACE ,  $this -> authenticated );
$storage -> write ( self :: CREDENTIAL_NAMESPACE ,  $this -> credentials );
// call the parent shutdown method
parent :: shutdown ();
}
}
?>

以上是開源版本中 open/ app/ LaiKeTui / user /BasicSecurityUser.class.php

另外,商業版本提供的各種文件是真的很齊全,因為涉及到相關協定,商業版本不能發了,但是有幾個點可以透露下:開源無加密、多店鋪入駐、技術免費售後、永久授權、永久免費更新……這些關鍵詞全部滿足的原始碼,在3萬以內的預算的,應該找不到第二家。當然有小夥伴會拿著部分需求來對比,記住哈,全部滿足的情況下,而且專案穩定迭代3年,這樣的原始碼即便是PHP也不會低於3萬的。

原始碼推薦:基於uni-app前端框架,開源版本還開源免費商用 原始碼推薦:基於uni-app前端框架,開源版本還開源免費商用

最後再推薦下為我們服務客服小哥的微信/電話: 15205564163  章魚


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69981239/viewspace-2709983/,如需轉載,請註明出處,否則將追究法律責任。

相關文章