Click here to Skip to main content
15,894,896 members
Articles / Web Development / HTML

Token Manager

Rate me:
Please Sign up or sign in to vote.
4.96/5 (25 votes)
29 Oct 2012GPL39 min read 97.5K   1.6K   53  
The Token Manager allows web developers to program PHP, HTML, CSS and JavaScript into tokens that can be used throughout WordPress.
<link rel="stylesheet" type="text/css" href="<?php echo plugin_dir_url( __FILE__ ); ?>tm.css" />

<?php 
    // Check if coffee
    $coffee = intval(get_option('tokenmanager_coffee', 0));

    if($coffee==0)
    {
      echo '<div class="wrap" style="padding:0px 220px 0px 0px">';
      include 'sidebar.php';
    }
    else
    {
      echo '<div class="wrap">';
    }
?>
  <div class="icon32 icon32-posts-post" id="icon-edit" style="background: transparent url('<?php echo plugin_dir_url( __FILE__ ); ?>icons/icon1_32.png') 0px 0px no-repeat"><br></div>
  <h2>Token Manager - Professional Version Only</h2>

  <p>The feature you are looking for, is not present in the Token Manager (Standard Version). Below is a feature comparison. 
     If you would like to find out more about Token Manager (Professional), please visit <a href="http://www.codevendor.com/tokenmanager/">http://www.codevendor.com/tokenmanager/</a></p>

<h3>Token Manager (Standard) Features</h3>
<ul>
<li>Dynamic Processes PHP, HTML, CSS, JS</li>
<li>Token Management, Add, Edit, Delete</li>
<li>Custom Token Types</li>
<li>Token Page Assignment</li>
<li>Token Statistics</li>
<li>Token Descriptions</li>
<li>Custom Searching and Recordsets</li>
<li>Supports WordPress MultiSite</li>
<li>WordPress aware Tokens</li>
<li>Tokens within Tokens</li>
<li>Error Handling on Webpage, PHP and Tokens</li>
</ul>

<h3>Token Manager (Professional) Features</h3>
<ul>
<li>Everything from Above... Plus+</li>
<li>Code Versioning</li>
<li>Token History</li>
<li>Backup Systems</li>
<li>Restore Systems</li>
<li>Error Handling in Admin, Email Forwards</li>
</ul>

<h3>Future Enhancements For Both</h3>
<ul>
<li>Code Optimization</li>
<li>WordPress Token Injection Menus</li>
<li>Sorting Systems</li>
<li>Better Searching</li>
</ul>

</div>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Codevendor
United States United States
Please visit my personal website https://codevendor.com for my latest codes and updates.

Comments and Discussions